SpringBoot2.x 使用 Junit5 作为测试平台
一般用官网创建或者是IDEA工具创建的都自带了
注意一下如果配置了这个,就不能用5一下的junit了
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<!--junit-vintage-engine 提供了 Junit3 与 Junit4 的运行平台-->
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
加两个注解就可以进行测试了
网站声明:如果转载,请联系本站管理员。否则一切后果自行承担。
添加我为好友,拉您入交流群!
请使用微信扫一扫!