2016-01-13 40 views
0

我目前正在學習如何使用磁帶進行單元測試。我已經能夠驗證在我的測試中發生了錯誤。但是,我們如何驗證使用Error引發的消息等於預期的消息?如何使用磁帶驗證錯誤消息?

實施例的單元測試:

var test = require('tape'), 
    ExampleObject = require('/path/to/ExampleObject'); 

test("Pass invalid argument to function", function(assert){ 
    assert.throws(function(){ 
     new ExampleObject(undefined, "validParameter") 
    }, TypeError, "Should throw TypeError for firstParam"); 

    assert.end(); 
}); 

ExampleObject:

function ExampleObject(param1, param2){ 
    if(typeof param1 !== 'string') { 
     throw new TypeError('ExampleObject - typeof for param1 should be string'); 
    } 
    if(typeof param2 !== 'string') { 
     throw new TypeError('ExampleObject - typeof for param2 should be string'); 
    } 

    /* 
    /do stuff 
    */ 
}; 

提前感謝!

回答