如何在timeOut上调用TestNG Reporter.log?

时间:2016-01-27 10:59:52

标签: java timeout testng

如何在timeOut发生时记录TestNG Reporter.log中的超时。 @Test(TIMEOUT = someUnitOfTime)

1 个答案:

答案 0 :(得分:2)

您可以实施IInvokedMethodListener.afterInvocation方法。

if(arg1.getThrowable() instanceof org.testng.internal.thread.ThreadTimeoutException){
                Reporter.log("Timeout it is!");
            }