jQunitjQuery單元測試框架
jQunit 是一個 jQuery 的單元測試框架,兼容 jsUnit,示例測試代碼:
//Using TestCase
jqUnit.TestCase.prototype.yep = function(val){ this.ok(val);};
var t = new jqUnit.TestCase('TestCase',function(){
/*setup*/
this.yep(1);
},function(){
/*teardown*/
this.ok(1)
});
//jqUnit is mixed into TestCase, so you can overwrite them & only need 1 with(){}
t.test('part 1',function(){ this.ok(1) });
t.test('part 2',function(){ with(this){ ok(2);yep(3) } });
t.test('part 3',function(){ with(jqUnit){ ok(4); this.yep(5) } });
評論
圖片
表情
