I am new to unit testing and I am getting these errors even though I though my test was correct, I just cannot figure out what these errors mean and I have tried several things
 Can't find variable: $rootScope
 Error: Injector already created, can not register a module!
spec.js
   describe('test broadcast', function () {
    var $controller;
    beforeEach(function() {
        module('test');
        inject(function (_$rootScope_, _$controller_) {
            $rootScope = _$rootScope_;
            spyOn($rootScope, '$broadcast');
            // Notice how inject $controller here.
            $controller = _$controller_;
        });
    });
    it("should broadcast something", function ($rootScope) {
        $controller('myCtrl', {
            // Pass in the $rootScope dependency.
            $rootScope: $rootScope.$new()
        })
        // Here we actually run the controller.
        expect($rootScope.$broadcast).toHaveBeenCalledWith('update');
        //someObj = { data: testData};
        //expect($rootScope.$broadcast).toHaveBeenCalledWith('update', someObj);
    });
})
controller
(function () {
    var test= angular.module('test');
    test.controller('myCtrl',
        function($rootScope, $scope, $resource, $location, $route, $routeParams, $log, catalogData) {
            $log.debug("myCtrl");
            $log.debug(myCtrl);
            $rootScope.$broadcast("update", {
                data: testData
            });
        }); // catalogCtrl
})();
 
     
     
    