我試圖執行我的測試腳本,使用testNG並嘗試下面的代碼,但0顯示反對運行,失敗和跳過在控制檯...因爲我無法驗證結果在我的腳本TestNG顯示0測試運行
package com.demoaut.newtours.testcases;
import org.testng.Assert;
import org.testng.annotations.Test;
//import junit.framework.Assert;
public class TC002_CheckAssert
{
@Test
public TC002_CheckAssert()
{
System.out.println("ajkcbh");
try
{
Assert.assertEquals("Pass", "Pass");
}
catch(Exception e)
{
System.out.println("Exception:"+e.getLocalizedMessage());
}
}
}
我上面的腳本通過的testng.xml文件執行
<suite name="Suite">
<test name="Test">
<classes>
<class name="com.demoaut.newtours.testcases.TC002_CheckAssert" />
</classes>
</test>
</suite>
控制檯resule
ajkcbh
「======================================== ======= 「
套房
總測試運行:0,失敗:0,跳過:0
」 =============== ================================「
你用maven命令運行嗎? – Murthi
沒有。我沒有使用maven。 – Durgesh
你確定你在輸出中看到了'ajkcbh'。這意味着您的測試實際上正在運行。還有一件事,你在哪個IDE中運行這個測試,如果它是** elicpse **,你確定** testng **插件已安裝。 –