我试图通过maven运行一个简单的junit测试,但未检测到任何测试。我要去哪里错了?项目目录
Project -> src -> test-> java -> MyTest.java
结果:
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
pom.xml
<?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.buildproftest.ecs</groupId>
<artifactId>buildprofiletest</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<debug>false</debug>
<optimize>true</optimize>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Junit测试用例
import org.junit.jupiter.api.Test;
public class MyTest {
@Test
public void printTest() {
System.out.println("Running JUNIT test");
}
}
响应是没有要运行的测试用例。
感谢您的见识
答案 0 :(得分:7)
根据注释(import org.junit.jupiter.api.Test
),您正在尝试使用Maven运行JUnit 5测试。根据{{3}},您必须添加此依赖项:
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
您的Maven版本带有maven-surefire-plugin
版本,该版本不支持JUnit5。您可以将Maven更新到最新版本。您还可以设置maven-surefire-plugin
的版本:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<!-- JUnit 5 requires Surefire version 2.22.0 or higher -->
<version>2.22.0</version>
</plugin>
请参见documentation。
请参阅Maven存储库中的junit5-samples for this information工件。截至2019年1月,版本为3.0.0-M3
。
答案 1 :(得分:2)
junit-jupiter
—较简单的原型Answer by LaurentG似乎是正确的,但是有点过时了。
从JUnit 5.4开始,您可以替换那些多个Maven工件:
junit
junit-jupiter-api
junit-jupiter-engine
…只有一个工件:
此新工件是其他工件的汇总,这是一个方便的包装程序,用于简化POM文件。
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<!-- Provides everything you need to write JUnit 5 Jupiter tests. -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.0-M1</version>
<scope>test</scope>
</dependency>
</dependencies>
这为您提供了编写和运行JUnit 5 Jupiter 测试的所有功能。
如果您要继续运行旧的JUnit 3或JUnit 4 legacy测试,请添加第二个依赖项junit-vintage-engine
。
<dependencies>
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter -->
<!-- Provides everything you need to write JUnit 5 Jupiter tests. -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.5.0-M1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.junit.vintage/junit-vintage-engine -->
<!-- Enables any legacy JUnit 3 and JUnit 4 tests you may have. Not needed for JUnit 5 tests. -->
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>5.5.0-M1</version>
<scope>test</scope>
</dependency>
</dependencies>
您还需要Surefire plugin中显示的other Answer。一定要获取最新版本,因为Surefire最近已进行了一些重要的修复/增强。当前版本为3.0.0-M3。