当我尝试使用maven(mvn test
)运行测试时,似乎maven找不到要运行的任何测试:
-------------------------------------------------------
T E S T S
-------------------------------------------------------
Running calculator.CalculatorTest
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec
Results :
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
我已经阅读了this,this,this和this问题,但是并不能解决我的问题。
我有一个使用Maven和JUnit的简单Java项目。我的项目结构如下:
\_ src
\_ main
\_ java
\_ calculator
\_ Calculator.java
\_ test
\_ java
\_ calculator
\_ CalculatorTest.java
在我的CalculatorTest.java文件中,我有这个:
package calculator;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
public class CalculatorTest {
@Test
public void addABPositive() {
Calculator calculator = new Calculator();
int a, b, res;
a = 5;
b = 5;
res = a + b;
if (calculator.add(a, b) != res) {
fail("a and b positive");
}
}
}
我的pom.xml
文件是(由IntelliJ自动生成):
<?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>HelloWorld</groupId>
<artifactId>HelloWorld</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
</project>
我不知道我在做什么错。也许是依赖关系,错误的JUnit版本?
感谢您的帮助。
答案 0 :(得分:1)
基于junit-team在github上提供的示例项目,pom需要配置surefire插件:
<build>
<plugins>
<!-- JUnit 5 requires Surefire version 2.22.1 or higher -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
</build>
答案 1 :(得分:1)
有几个问题。第一个编译器源/目标1.6无法正常工作,因为Junit 5至少需要JDK 8 ...
要运行JUnit 5测试,您必须添加以下依赖项:
<dependencies>
[...]
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
[...]
</dependencies>
第二点,您需要将maven-surefire-plugin固定为最低2.22.1 ...