【发布时间】:2020-10-14 13:42:13
【问题描述】:
我看到一些人遇到了这个问题,现在已经苦苦挣扎了几个星期,但无法在同一个项目上同时运行 JUnit4 和 JUnit5(我需要它来维护一些旧测试)。我注意到,如果我删除了 maven surefire 插件,我可以运行 JUnit4 测试,而当它添加到 POM 时,只有 JUnit5 测试。
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
</plugins>
这种依赖也发生了类似的事情。如果我将它添加到 POM 文件中,即使存在 maven surefire 插件,我也可以运行 JUnit4 测试。但是,我需要删除它才能运行 JUnit5 测试。
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit5.version}</version>
<scope>test</scope>
</dependency>
这是我完整的pom
<?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.hmhco</groupId>
<artifactId>tests</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<properties>
<java.version>1.8</java.version>
<maven.compiler.version>3.8.1</maven.compiler.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<rest-assured.version>3.0.0</rest-assured.version>
<json-schema-validator.version>3.3.0</json-schema-validator.version>
<junit5.version>5.2.0</junit5.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit5.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.30</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
</plugin>
</plugins>
</build>
这些是我尝试使用mvn test 运行的小类
import org.junit.Test;
public class J4Test {
@Test
public void testing() {
System.out.println("Testing J4");
}
}
--
import org.junit.jupiter.api.Test;
public class J5Test {
@Test
public void testing() {
System.out.println("Testing J5");
}
}
【问题讨论】:
-
你看过github.com/junit-team/junit5-samples/tree/main/…吗?但也许 Surefire 3 改变了一些机制。
-
太棒了,非常感谢。用这个项目中的 pom 替换我的 pom 解决了这个问题。 :)
-
我对你们的建议是阅读 Surefire 插件的文档。每个新版本都增加了一些改进,见maven.apache.org/surefire/maven-surefire-plugin/examples/…见下面我的详细评论。
标签: java maven junit junit4 junit5