java8+junit5实现并发测试(多线程)
2021/4/14 22:25:10
本文主要是介绍java8+junit5实现并发测试(多线程),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1.配置线程
#是否允许并行执行true/false junit.jupiter.execution.parallel.enabled = true #是否支持方法级别多线程same_thread/concurrent junit.jupiter.execution.parallel.mode.default = concurrent #是否支持类级别多线程same_thread/concurrent junit.jupiter.execution.parallel.mode.classes.default = concurrent # the maximum pool size can be configured using a ParallelExecutionConfigurationStrategy junit.jupiter.execution.parallel.config.strategy=fixed junit.jupiter.execution.parallel.config.fixed.parallelism=10
2. 编写并发测试的代码
import com.wechat.apiobject.DepartMentObject; import com.wechat.apiobject.TokenHelper; import io.restassured.response.Response; import org.junit.jupiter.api.*; import org.junit.jupiter.api.parallel.Execution; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.parallel.ExecutionMode.CONCURRENT; /** * 对创建部门进行并发测试 */ @TestMethodOrder(MethodOrderer.OrderAnnotation.class) public class Demo_06_1_thread_creatdepartment { private static final Logger logger = LoggerFactory.getLogger(Demo_06_1_thread_creatdepartment.class); static String accessToken; @BeforeAll public static void getAccessToken() throws Exception { accessToken = TokenHelper.getAccessToken(); logger.info(accessToken); } @DisplayName("创建部门") @RepeatedTest(100) @Execution(CONCURRENT) void createDepartment() { String creatName= "name1234567"; String creatEnName="en_name1234567"; Response creatResponse = DepartMentObject.creatDepartMent(creatName,creatEnName,accessToken); assertEquals("0",creatResponse.path("errcode").toString()); } }
这篇关于java8+junit5实现并发测试(多线程)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23Springboot应用的多环境打包入门
- 2024-11-23Springboot应用的生产发布入门教程
- 2024-11-23Python编程入门指南
- 2024-11-23Java创业入门:从零开始的编程之旅
- 2024-11-23Java创业入门:新手必读的Java编程与创业指南
- 2024-11-23Java对接阿里云智能语音服务入门详解
- 2024-11-23Java对接阿里云智能语音服务入门教程
- 2024-11-23JAVA对接阿里云智能语音服务入门教程
- 2024-11-23Java副业入门:初学者的简单教程
- 2024-11-23JAVA副业入门:初学者的实战指南