AngularJS - 控制器未注册

AngularJS - Controller not registered

我开始进行 AngularJS 单元测试,我收到一个错误,如名称为 "SiteCtrl" 的控制器未注册。

我这里做错了什么?

describe('#hasFormError', function () {

    var $rootScope,form, templateHtml, ctrl,$scope,scope;

    angular.module("TestApp");
    beforeEach(function () {
        angular.module("TestApp");
    });

    beforeEach(inject(function ($rootScope, $controller, $compile, $templateCache) {
        $scope = $rootScope.$new();
        ctrl = $controller;
        ctrl('SiteCtrl', { $scope: scope });

        var a1 = angular.element('<div class="page_container" ng-controller="SiteCtrl"><form name="shan"><div class="zip"><input ng-if="max_length == 5" type="text" name="zipcode" value="" ng-model="Sitezip.zipcode" ng-pattern="/^[0-9]*$/" ng-maxlength="max_length" required><input ng-if="max_length == 7" type="text" name="zipcode" value="" ng-model="store_zip.zipcode" ng-pattern="/^[a-zA-Z0-9]*$/" ng-maxlength="max_length" required></form></div>');


        $compile(a1)($scope);
       form = $scope.shan;  
        $scope.$apply()


    }));


    it("TestCase :controller  defined \n", function () {
        expect(ctrl).toBeTruthy();
    }); 

    it("TestZipCode", function () {
        form.zipcode.$setViewValue("4535433123123");
        expect(form.zipcode.$valid).toBeTruthy();
     });


});

你必须在任何js文件中注入'SiteCtrl' 之后就可以使用了。

app.controller("SiteCtrl",SiteCtrl);
SiteCtrl.$inject = ['$scope','$state','$filter'];