我想知道我們如何獲得運行測試的名稱,測試用例的名稱和測試結果(測試是否已通過或失敗)。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??
}