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