Springboot 单元测试
2021-03-26 06:26
阅读:536
标签:imp import eprof cti org 使用 start dep junit
使用SpringBoot进行单元测试
依赖:
org.springframework.boot
spring-boot-starter-test
test org.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
下一篇:python线性插值解析
评论
亲,登录后才可以留言!