Springboot 单元测试
2021-03-26 06:26
标签:imp import eprof cti org 使用 start dep junit 使用SpringBoot进行单元测试 依赖: 代码: Springboot 单元测试 标签:imp import eprof cti org 使用 start dep junit 原文地址:https://www.cnblogs.com/linyufeng/p/13718980.htmlimport 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(){
}
}
下一篇:python线性插值解析