0

我有一个使用角度扩展的控制器。我如何测试角度延伸?

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
        }
    });
4

1 回答 1

0

当您编写单元测试时,您并不是要测试第三方库的功能,而只是测试您自己编写的功能。

假设您正在使用的第 3 方库确实已经过测试(对于 angularjs 来说是这样

于 2015-10-14T13:24:49.980 回答