1、通过xml配置实现,最多起5个线程去同时执行不同的用例。
<suite name="Testng Parallel Test" parallel="tests" thread-count="5">
<suite name="Testng Parallel Test" parallel="classes" thread-count="5">
<suite name="Testng Parallel Test" parallel="methods" thread-count="5">
- 1
- 2
- 3
methods:所有用例都可以在不同的线程去执行。
classs:不同class tag下的用例可以在不同的线程执行,相同class tag下的用例只能在同一个线程中执行。
tests:不同test tag下的用例可以在不同的线程执行,相同test tag下的用例只能在同一个线程中执行。
2、通过注解实现
@Test(invocationCount = 10, threadPoolSize = 10,timeOut = 3000)
- 1
//threadPoolSize为线程池内可以使用的线程数
//使用threadPoolSize个线程,将test方法执行invocationCount次
//timeOut配置的是每次执行该测试方法所耗费时间的阈值,超过阈值则测试失败
使用xml去设置线程数是启动多个线程,去执行各用例,线程a在执行用例A;线程b在执行用例B。。。
使用注解的方法去设置多个线程,则可通过配置invocationCount次数,实现案例的循环使用,并开启多个线程执行,从而达到同一个案例并发执行的效果。