原因
springboot 默认用的是junit5版本 而且不能导错包
import org.junit.jupiter.api.Test; 具备下面两个包才行
<!-- 配置test启动器(自动整合spring-test、junit) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope