10

私は動作する次の機能を持っています

function sum ()
{
    var total = 0,
        num = 0,
        numArgs = arguments.length;

    if (numArgs === 0) {
        throw new Error("Arguments Expected");
    }

    for(var c = 0; c < numArgs; c += 1) {
        num = arguments[c];
        if (typeof(num) !== "number") {
            throw new Error("Only number are allowed but found", typeof (num));
        }
        total += num;

    }

    return total;

}


sum(2, "str"); // Error: Only number are allowed but found "string"

ジャスミン仕様ファイルは次のとおりです。

describe("First test; example specification", function () {
    it("should be able to add 1 + 2", function (){
        var add = sum(1, 2);
        expect(add).toEqual(3);
    });
    it("Second Test; should be able to catch the excption 1 +'s'", function (){
        var add = sum(1, "asd");
        expect(add).toThrow(new Error("Only number are allowed but found", typeof("asd")));
    });
});

最初のテストはうまく機能しますが、2 番目のテストでは失敗します。
で予想されるエラーをどのように処理すればよいJasmineですか?

4

1 に答える 1

16

この質問で説明したように、fn() を呼び出した結果ではなく、期待する関数オブジェクトを渡す必要があるため、コードは機能しません。

    it("should be able to catch the excption 1 +'s'", function (){
//        var add = sum(1, "asd");
        expect(function () {
            sum(1, "asd");
        }).toThrow(new Error("Only number are allowed but found", typeof ("asd")));
    });
于 2012-04-19T17:17:35.503 に答える