我见过很多类似的例子:
@Test(timeOut = 1000)
是否可以覆盖测试用例中的超时值?如果是这样,怎么样?
我的问题是测试用例的执行时间是由传递给测试用例的参数控制的。有时,测试用例需要一个小时,有时需要多天。我想相应地设置超时。
答案 0 :(得分:2)
这是可能的,但我不建议这是一个非常棘手的黑客。
public class DynamicTimeOutSample {
private final long timeout;
private final long waitTime;
@DataProvider
public static Object[][] dp() {
return new Object[][]{
new Object[]{ 1_000, 2_000 },
new Object[]{ 3_000, 6_000 },
};
}
@Factory(dataProvider = "dp")
public DynamicTimeOutSample(long timeout, long waitTime) {
this.timeout = timeout;
this.waitTime = waitTime;
}
@BeforeMethod
public void setUp(ITestContext context) {
ITestNGMethod currentTestNGMethod = null;
for (ITestNGMethod testNGMethod : context.getAllTestMethods()) {
if (testNGMethod.getInstance() == this) {
currentTestNGMethod = testNGMethod;
break;
}
}
currentTestNGMethod.setTimeOut(timeout);
}
@Test
public void test() throws InterruptedException {
Thread.sleep(waitTime);
}
}
示例的两次测试用例将按预期失败。
我创建了功能请求,但不要期望很快就会发布:https://github.com/cbeust/testng/issues/1061