每个场景使用Jasmine的测试用例

时间:2013-12-06 21:16:20

标签: javascript unit-testing jasmine testcase jasmine-jquery

我正在为我的排序程序编写一个jasmine单元测试.. 我是茉莉花和测试用例的新手。 在下面提供我的代码...... 你能告诉我怎么做小提琴......

http://jsfiddle.net/YYg8U/

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

1 个答案:

答案 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值(或NaNInfinity,...)
  • 具有相同绝对值的数字(例如-0.010.01
  • ...