timeOut是TestNG中的帮助程序属性,如果该方法花费的时间超过timeOut持续时间,则该方法可以终止该方法的执行。设置超时时间(以毫秒为单位),之后测试方法将标记为“失败”。
@Test public void ContactVerify(){ System.out.println("Contact validation is successful”); } @Test(timeOut = 1000) public void LandingPage(){ System.out.println("Landing page verification is successful”); } @Test public void LoanContact(){ System.out.println("Loan contact details verification is successful”); }
1000毫秒后,如果LandingPage()执行继续,则该测试方法将被视为失败。其余测试方法将没有影响。