我正在为我的排序程序编写一个jasmine单元测试.. 我是茉莉花和测试用例的新手。 在下面提供我的代码...... 你能告诉我怎么做小提琴......
var myNumbersToSort = [-1, 2, -3, 4, 0.3, -0.001];
function getClosestToZero(numberSet) {
var i = 0, positiveSet = [], positiveClosest = 0;
for (i = 0; i < numberSet.length; i += 1) {
positiveSet.push(numberSet[i] >= 0 ? numberSet[i] : numberSet[i] * -1);
}
positiveClosest = Math.min.apply(Math, positiveSet);
return numberSet[positiveSet.indexOf(positiveClosest)];
}
alert(getClosestToZero(myNumbersToSort));
答案 0 :(得分:1)
示例测试用例可能如下所示
describe( 'getClosestToZero', function () {
it( 'finds a positive unique number near zero', function () {
expect( getClosestToZero( [-1, 0.5, 0.01, 3, -0.2] ) ).toBe( 0.01 );
} );
it( 'finds a negative unique number near zero', function () {
expect( getClosestToZero( [-1, 0.5, -0.01, 3, -0.2] ) ).toBe( -0.01 );
} );
// your method actually doesn't pass this test
// think about what your method *should* do here and if needed, fix it
it( 'finds one of multiple identical numbers near zero', function () {
expect( getClosestToZero( [-1, 0.5, 0.01, 0.01, 3, -0.2] ) ).toBe( 0.01 );
} );
} );
您可以考虑更多测试用例。测试任何积极和消极的行为,并尝试考虑边缘情况。请记住,测试不仅仅是为了证明您的代码目前正在运行,而且还要确保它在未来的开发过程中不会中断。
可能的边缘情况:
undefined
值(或NaN
,Infinity
,...)-0.01
和0.01
)