0

我想知道我们如何获得正在运行的测试的名称、测试用例的名称和测试结果(测试是通过还是失败)。

以下是代码示例:

MyTestCase= TestCase("MyTestCase");

MyTestCase.prototype.setUp = function()
{
 // print name of the test => testA
 // print name of the testcase => MyTestCase
}

MyTestCase.prototype.testA= function()
{
  //do something    
}


MyTestCase.prototype.tearDown = function()
{
  //result of the test => passed or failed??
}
4

2 回答 2

0

我已经将 JSTestDriver 与 QUnit 测试运行器一起使用,它显示正在运行的测试的名称、测试用例的名称和测试结果(测试是通过还是失败)。

http://qunitjs.com/

下面是适配器:

https://code.google.com/p/js-test-driver/wiki/QUnitAdapter

于 2013-10-08T06:25:29.370 回答
0

JsTestDriver 有一个名为 --testOutput 的标志,它指定存储结果的路径。您可以在那里找到测试名称、测试用例以及它是通过还是失败。它以 xml 的形式出现。

于 2013-10-09T17:33:43.840 回答