gpt4 book ai didi

eclipse - TestNG 中的当前调用计数

转载 作者:行者123 更新时间:2023-12-04 17:36:32 25 4
gpt4 key购买 nike

我有一个方法要使用 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 插件。

最佳答案

您可以获得当前的调用计数,如下所述

public class getCurrentInvocationCount {
int count;

@BeforeClass
public void initialize() {
count = 0;
}

@Test(invocationCount = 10)
public void testMe() {
count++;
System.out.println("Current Invocation count "+count)

}
}

我知道这是一种愚蠢的方式。但是,它将服务于您的目的。您可以引用 testNG 源类来获取实际电流 invocationCount

关于eclipse - TestNG 中的当前调用计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17139386/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com