假设我有一个依赖于 $rootScope 中的值的服务,如以下(微不足道的)服务:
angular.module('myServices', [])
.factory('rootValGetterService', function($rootScope) {
return {
getVal: function () {
return $rootScope.specialValue;
}
};
});
如果我想通过在 $rootScope 中输入一个值来对此进行单元测试,那么最好的方法是什么?