我正在测试一个spring-boot的小示例,我意识到如果我在spring-boot-start -parent版本2.7.0
中使用mvn test
命令,它将找不到任何测试。但是如果我使用像2.3.12.RELEASE
这样的旧版本,maven将检测所有测试。
这里是pom文件:几乎是原始的initializr
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.demo</groupId>
<artifactId>test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>rectangle-api</name>
<description></description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我有两个测试类,一个mvc测试和另一个常规测试:
@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoServiceTest {
@RunWith(SpringRunner.class)
@WebMvcTest
public class DemoControllerTest {
这两个类将与mvn test
一起运行,如果我将我的pom父级降级为2.3.12.RELEASE
,则找到JUnit
依赖项。
根据spring-boot 2.4.0的发布说明,JUnit 5 vintage从spring-boot-starter-test
中移除,因此JUnit 4依赖项如org.junit.Test
不再自动可用,除非手动导入为maven/gradle依赖项。
使用Junit 5依赖项,如org.junit.jupiter.api.Test
"fixed"这个项目。