小编给大家分享一下jQuery如何为函数创建一个基本测试用例,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
为函数创建一个基本测试用例
//Separate tests into modules.module("Module B");test("some other gbin1.com test", function() {//Specify how many assertions are expected to run within a test.expect(2);//A comparison assertion, equivalent to JUnit's assertEquals.equals( true, false, "failing test" );equals( true, true, "passing test" );});
以上是“jQuery如何为函数创建一个基本测试用例”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!