我有一个使用角度延伸的控制器。 我如何测试角度延伸?
angular.module('conditionmonitor').controller('mapController', ['$scope', '$http', 'UIConfig', function ($scope, $http, UIConfig) {
angular.extend($scope, {
center: {
lat: UIConfig.LATITUTE,
lng: UIConfig.LONGITUDE,
zoom: UIConfig.ZOOMLEVEL
},
markers: $scope.markers,
layers: $scope.layers,
defaults: {
scrollWheelZoom: true
}
});
答案 0 :(得分:0)
当您编写单元测试时,您不是要测试第三方库的功能,而只是测试您自己编写的功能。
假设您正在使用的第三方库确实已经过测试(which is true for angularjs)