码迷,mamicode.com
首页 > Web开发 > 详细

使用 Qunit 对js代码进行单元测试

时间:2014-09-22 16:42:42      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   使用   java   ar   文件   div   

参考博客地址 http://www.woiweb.net/how-to-test-your-javascript-code-with-qunit.html

官方地址 http://qunitjs.com/

1、创建qunit.html 文件添加由官方提供的cdn 加载测试框架

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>QUnit Example</title>
  <link rel="stylesheet" href="//code.jquery.com/qunit/qunit-1.15.0.css">
</head>
<body>
  <div id="qunit"></div>
  <div id="qunit-fixture"></div>
  <script src="//code.jquery.com/qunit/qunit-1.15.0.js"></script>
  <script src="project.js"></script>
  <script src="tests.js"></script>
</body>
</html>

  

最后面引入的 project.js 就是待测试的文件

最后面引入的 tests.js 就是测试用例的文件

2、测试用例的编写

先写一个待测试例子,这是一个判断是否是偶数的方法

//project.js
function isEven(val) {
    return val % 2 === 0;
}

3、编写测试

//tests.js
test(‘isEven()‘, function() { ok(isEven(0), ‘Zero is an even number‘); ok(isEven(2), ‘So is two‘); ok(isEven(-4), ‘So is negative four‘); ok(!isEven(1), ‘One is not an even number‘); ok(!isEven(-7), ‘Neither is negative seven‘); })

使用 Qunit 对js代码进行单元测试

标签:style   blog   http   io   使用   java   ar   文件   div   

原文地址:http://www.cnblogs.com/linksgo2011/p/3985884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!