Springboot 单元测试

2021-03-26 06:26

阅读:474

标签:imp   import   eprof   cti   org   使用   start   dep   junit   

使用SpringBoot进行单元测试

依赖:

org.springframework.boot
    spring-boot-starter-test
    testorg.junit.vintage
            junit-vintage-engine
        

代码:

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@ActiveProfiles("dev")
//配置本地随机端口,服务器会选择一个空闲的端口使用,避免端口冲突
@SpringBootTest(webEnvironment = org.springframework.boot.test.context.SpringBootTest.WebEnvironment.RANDOM_PORT)
public class SpringBootTestDemo {

    @Test
    public void test(){

    }

}

Springboot 单元测试

标签:imp   import   eprof   cti   org   使用   start   dep   junit   

原文地址:https://www.cnblogs.com/linyufeng/p/13718980.html


评论


亲,登录后才可以留言!