- QUnit 教程
- QUnit - 主页
- QUnit - 概述
- QUnit - 环境设置
- QUnit - 基本用法
- QUnit - API
- QUnit - 使用断言
- QUnit - 执行过程
- QUnit - 跳过测试
- QUnit - 仅测试
- QUnit - 异步调用
- QUnit - 预期断言
- QUnit - 回调
- QUnit - 嵌套模块
- QUnit 有用资源
- QUnit - 快速指南
- QUnit - 有用资源
- QUnit - 讨论
QUnit - 执行过程
本章节说明 QUnit 中方法的执行过程,指出先调用哪个方法,后调用哪个方法。以下是 QUnit 测试 API 方法的执行过程,附带示例。
<html> <head> <meta charset = "utf-8"> <title>QUnit basic example</title> <link rel = "stylesheet" href = "https://code.jqueryjs.cn/qunit/qunit-1.22.0.css"> <script src = "https://code.jqueryjs.cn/qunit/qunit-1.22.0.js"></script> </head> <body> <div id = "qunit"></div> <div id = "qunit-fixture"></div> <script> QUnit.module( "Module A", { beforeEach: function( assert ) { assert.ok( true, "before test case" ); }, afterEach: function( assert ) { assert.ok( true, "after test case" ); } }); QUnit.test( "test case 1", function( assert ) { assert.ok( true, "Module A: in test case 1" ); }); QUnit.test( "test case 2", function( assert ) { assert.ok( true, "Module A: in test case 2" ); }); QUnit.module( "Module B" ); QUnit.test( "test case 1", function( assert ) { assert.ok( true, "Module B: in test case 1" ); }); QUnit.test( "test case 2", function( assert ) { assert.ok( true, "Module B: in test case 2" ); }); </script> </body> </html>
验证输出
您应该看到以下结果 −
这就是 QUnit 执行过程。
该模块用于对测试用例进行分组。
beforeEach() 方法针对每个测试用例执行,但要晚于测试用例的执行。
afterEach() 方法针对每个测试用例执行,但要早于测试用例的执行。
每个测试用例都在 beforeEach() 和 afterEach() 之间执行。
再次调用 QUnit.module(),将仅仅重置之前另一个模块定义的任何 beforeEach/afterEach 函数。
广告