我是單元測試新手。如何編寫Controller的測試用例?
請幫我寫測試用例代碼如下代碼:
$scope.convertToInt = function (str) {
if (!isNumberEmpty(str) && !isNaN(str)) {
return parseInt(str, 10);
}
return "";
}
我已經試過這樣,但沒能做到。
describe('ConfigurationTestController', function() {
beforeEach(module('usp.configuration'));
describe('ConfigurationController', function() {
beforeEach(inject(function ($rootScope, $controller) {
scope = $rootScope.$new();
controller = $controller('ConfigurationController', {
'$scope': scope
});
}));
});
});
請告訴我,我該怎麼寫.......
爲什麼不能谷歌? – Joy
我試圖在谷歌搜索,但我沒有得到如何通過測試案例的str,之後,只有我張貼。:) –