私のメインアプリモジュールには、次の行があります。
angular.module('app', ['ngCookies'])
.config(['$routeProvider', '$locationProvider',
}])
.run(['$rootScope', '$location', 'SecurityService',
function ($rootScope, $location, SecurityService) {
SecurityService.Initialize();
}]);
SecurityService はファクトリ タイプであり、次の行の呼び出しをテストしたい:
SecurityService.Initialize();
それにスパイを注入する方法はありますか?