2

我想在一个套件中做不同的性能数据。如

@Test(invocationCount = 100)
@Test(invocationCount = 200)
@Test( invocationCount = 500)
@Test( invocationCount = 1000)

但我发现没有将变量设置为invocationCount的解决方案。并且需要复制很多代码才能让invocationCount不同。

您能帮我了解如何将变量设置为 invocationCount 吗?

4

1 回答 1

0

如果您想在运行时设置 invocationCount,那么我相信您唯一的选择是 TestNG Listeners。您可以在测试方法运行之前修改注释。

http://testng.org/doc/documentation-main.html#testng-listeners

于 2013-08-27T15:39:45.267 回答