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 に答える