作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的框架一度卡住了。
我想多次运行 @Test 注解。为此,我用谷歌搜索并找到了一个使用@Test 注释设置 invocationCount 变量的解决方案。
所以我所做的是:
@Test(invocationCount=3)
这对我来说非常有效。但是我的问题是我想用一个变量来设置这个参数的值。
例如我有一个变量,我想要的是这样的:
int x=5;
@Test(invocationCount=x)
是否有任何可能的方法来执行此操作或任何其他好的方法来多次执行相同的 @Test 注释。
提前致谢。
最佳答案
Set TestNG timeout from testcase是一个类似的问题。
你有两个选择:
如果x
是常量,您可以使用IAnnotationTransformer
.
否则,您可以像这样使用 hack:
public class DynamicTimeOutSample {
private final int count;
@DataProvider
public static Object[][] dp() {
return new Object[][]{
new Object[]{ 10 },
new Object[]{ 20 },
};
}
@Factory(dataProvider = "dp")
public DynamicTimeOutSample(int count) {
this.count = count;
}
@BeforeMethod
public void setUp(ITestContext context) {
ITestNGMethod currentTestNGMethod = null;
for (ITestNGMethod testNGMethod : context.getAllTestMethods()) {
if (testNGMethod.getInstance() == this) {
currentTestNGMethod = testNGMethod;
break;
}
}
currentTestNGMethod.setInvocationCount(count);
}
@Test
public void test() {
}
}
关于java - 如何在运行时在 TestNG @Test Annotation 中设置 invocationCount 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37741194/
我知道我们可以使用 invocationCount 来重复给定数字的测试方法,如下所示: @Test(invocationCount = 10) public void example() {
我的框架一度卡住了。 我想多次运行 @Test 注解。为此,我用谷歌搜索并找到了一个使用@Test 注释设置 invocationCount 变量的解决方案。 所以我所做的是: @Test(invoc
我有一个用于 JAVA 项目的 TestNG 测试套件,并且在那里我有一个 @Test(DataProvider="ListOfObjects") 注释方法。它提供了大约 20 行数据的方法。(因此该
我是一名优秀的程序员,十分优秀!