QUnit: jQuery单元测试框架
程序员文章站
2022-03-13 11:43:54
...
QUnit是jQuery的单元测试框架,推荐使用,通过下面代码测试:
module("Show and Hide"); test("should hide the element when hide is called", function(){ $("#testDiv").hide(); // actual, expected equals($("#testDiv").css("display"), "none", "The element should be hidden"); }); test("should show the element when show is called", function(){ // Arrange $("#testDiv").css("display", "none"); // Act $("#testDiv").show(); // Assert // actual, expected equals($("#testDiv").css("display"), "block", "The element should be visible"); });
详细内容请查看:Getting Started With jQuery QUnit for Client-Side Javascript Testing
上一篇: 问题频道也很幽默.不信?我指给您看...
下一篇: java反射超详细讲解