码迷,mamicode.com
首页 > 编程语言 > 详细

java8+junit5实现并发测试(多线程)

时间:2021-04-15 12:31:45      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:The   http   figure   res   ted   access   ble   isp   class   

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实现并发测试(多线程)

标签:The   http   figure   res   ted   access   ble   isp   class   

原文地址:https://www.cnblogs.com/cythia2018/p/14660025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!