2013-10-07 67 views
0

我想知道我們如何獲得運行測試的名稱,測試用例的名稱和測試結果(測試是否已通過或失敗)。js-test-driver - 如何在setUp方法中獲取正在運行的Test和TestCase的名稱?

以下是代碼例如:

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?? 
} 

回答

0

JsTestDriver有一個名爲--testOutput標誌,指定在哪裏保存結果的路徑。您可以找到測試名稱,測試用例以及它是否通過或失敗。它來作爲一個XML。

相關問題