我有一个方法要使用 TestNG 进行测试,并用以下注释对其进行了标记:
@Test(invocationCount=10, threadPoolSize=5)
现在,在我的测试方法中,我想获取正在执行的当前调用计数。那可能吗?如果是,那么我很高兴知道如何。
更恰当的例子:
@Test(invocationCount=10, threadPoolSize=5)
public void testMe() {
System.out.println("Executing count: "+INVOCATIONCOUNT); //INVOCATIONCOUNT is what I am looking for
}
作为参考,我在 Eclipse 中使用了 TestNG 插件。