TestNg threadPoolSize、invocationCount、timeOut

使用注解的方式对TestNg线程池配置、执行次数配置、超时配置

注:使用注解来控制测试方法运行的次数和超时时间,timeOut在单线程或者多线程模式下都可用,threadPoolSize设置了线程池的个数 * ,在观察结果时,发现很多值是重复的,但是可能不等于我们配置的线程池个数,因为线程的个数还取决于硬件CPU的支持,

invocationCount----表示执行的次数

threadPoolSize-----表示线程池的内线程的个数

timeOut-------超时时间-毫秒

java code:

/**
 * 
 * 

* Title: TestngInvocationCount *

* *

* Description: * 使用注解来控制测试方法运行的次数和超时时间,timeOut在单线程或者多线程模式下都可用,threadPoolSize设置了线程池的个数 * ,在观察结果时,发现很多值是重复的,但是可能不等于我们配置的线程池内线程个数,因为线程的个数还取决于硬件CPU的支持, *

* *

* Company: *

* * @author : Dragon * * @date : 2014年10月22日 */ public class TestngInvocationCount { private static int sum = 0; @Test(threadPoolSize = 2, invocationCount = 10, timeOut = 1000) public void testServer() throws InterruptedException { // 检测启动的线程数,当启动的个数超过CPU核数时,其实是重新在调度 // Thread.sleep(2000); sum++; System.out.println("........." + sum); } }


测试结果:

[ThreadUtil] Starting executor timeOut:1000ms workers:10 threadPoolSize:3
.........2
.........2
.........2
.........3
.........4
.........5
.........6
.........7
.........8
.........9
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer
PASSED: testServer

===============================================
    Default test
    Tests run: 10, Failures: 0, Skips: 0
===============================================

TestNG方法测试及注意要点 代码及配置详解(解决testng方法不执行问题)


你可能感兴趣的:(TestNg技术详解,testng线程池配置,testng超时,testng重复测试,invocationCount)