qUnit的nUnits [SetUp]
属性的等价物是什么?
答案 0 :(得分:16)
var mySetupFunc(details){/* setup code */}
QUnit.testStart(mySetupFunc);
从QUnit版本1.10.0pre-A开始,每个注册的callback将收到一个哈希作为第一个(也是唯一的)参数。我在上面的例子中命名了我的'详细信息'。哈希的内容因回调而异。这是每个哈希中的信息列表。
<强> begin 强>
(所有测试的开始)
{} /* empty hash */
<强> done 强>
(所有测试结束)
<强> log 强>
(在ok()方法中调用等)
<强> testStart 强>
(在每个测试开始时调用)
<强> testDone 强>
(在每次测试结束时调用)
<强> moduleStart 强>
(在每个模块的开头调用)
<强> moduleDone 强>
(在每次测试结束时调用)
// There's probably a more elegant way of doing this,
// but these two methods will add a row to a table for each test showing how long
// each test took.
var profileStartTime = null;
function startTimer(details) {
profileStartTime = new Date();
}
function stopTimer(details) {
var stopDate = new Date();
var duration = stopDate - profileStartTime;
jQuery('#profiling').append(
"<tr><td>"
+ (details.module ? details.module + ":" : "")
+ details.name
+ "<\/td><td class='duration'>"
+ duration
+ "<\/td><\/tr>");
}
QUnit.testStart(startTimer);
QUnit.testDone(stopTimer);
上面引用的我的html表如下所示:
<div style='margin: 10px 0;'>
<table summary='profiling' class='profiling_table'>
<thead>
<tr>
<th>Test Name</th>
<th>Duration</th>
</tr>
</thead>
<tbody id='profiling'>
</tbody>
</table>
</div>
答案 1 :(得分:5)
每当新的测试批次断言开始运行时,都会调用
QUnit.testStart(name)
。name
是测试批次的字符串名称。
有关详细信息,请参阅the documentation。
答案 2 :(得分:3)
请注意,console.log()
不适用于所有浏览器!
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.21/jquery-ui.min.js"></script>
<script src="lib/qunit-1.9.0.js"></script>
<script src="lib/jquery.mockjax.js"></script>
<!-- QUnit Events -->
<script>
var testSetup = {
begin : function (data) /* before any tests start */ {
console.log("begin: [" + new Date().toLocaleTimeString() + "]");
},
moduleStart : function (data) /* before the start of each module */ {
console.log("-------\n moduleStart:", data.name);
},
testStart : function (data) /* before the start of each test */ {
console.log(" testStart:", data.name);
},
log : function (data) /* called after every assertion */ {
console.log(" log:", data.message);
},
testDone : function (data) /* after each test */ {
console.log(" testDone:", data);
},
moduleDone : function (data) /* after each module */ {
console.log(" moduleDone:", data);
},
done : function (data) /* all tests done */ {
console.log("done:", data);
},
init : function () {
QUnit.begin = testSetup.begin;
QUnit.moduleStart = testSetup.moduleStart;
QUnit.testStart = testSetup.testStart;
QUnit.log = testSetup.log;
QUnit.testDone = testSetup.testDone;
QUnit.moduleDone = testSetup.moduleDone;
QUnit.done = testSetup.done;
console.log("\n======== QUnit events initialized ==========");
}
};
$(document).ready(testSetup.init);
</script>