12

我有以下控制器

angular.module('samples.controllers',[])
  .controller('MainCtrl', ['$scope', 'Samples', function($scope, Samples){
  //Controller code
}

这取决于以下服务

angular.module('samples.services', []).
    factory('Samples', function($http){
    // Service code
}

尝试使用以下代码测试控制器:

describe('Main Controller', function() {
  var service, controller, $httpBackend;

  beforeEach(module('samples.controllers'));
  beforeEach(module('samples.services'));
  beforeEach(inject(function(MainCtrl, Samples, _$httpBackend_) {

  }));

    it('Should fight evil', function() {

    });
});

但出现以下错误:

Error: Unknown provider: MainCtrlProvider <- MainCtrl.

Ps 试过下面的帖子,似乎没有帮助

4

1 回答 1

27

测试控制器的正确方法是使用 $controller :

ctrl = $controller('MainCtrl', {$scope: scope, Samples: service});

详细示例:

describe('Main Controller', function() {
  var ctrl, scope, service;

  beforeEach(module('samples'));

  beforeEach(inject(function($controller, $rootScope, Samples) {
    scope = $rootScope.$new();
    service = Samples;

    //Create the controller with the new scope
    ctrl = $controller('MainCtrl', {
      $scope: scope,
      Samples: service
    });
  }));

  it('Should call get samples on initialization', function() {

  });
});
于 2013-01-02T14:16:00.273 回答