JUnit 5不会在使用@BeforeEach
注释注释的测试类中调用我的方法,其中我初始化测试中所需的测试对象的某些字段。当试图在测试方法(用@Test
注释的方法)中访问这些字段时,我显然得到一个NullpointerException。所以我在方法中添加了一些输出消息。
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
public class TestClass {
private String s;
public TestClass() {
}
@BeforeEach
public void init() {
System.out.println("before");
s = "not null";
}
@Test
public void test0() {
System.out.println("testing");
assertEquals("not null", s.toString());
}
}
在运行mvn clean test
的测试输出中,我得到了"测试"来自用test0()
注释注释的@Test
方法的消息,但是"之前"消息未打印。
Running de.dk.spielwiese.TestClass
!!!testing!!!
Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0 sec <<< FAILURE!
de.dk.spielwiese.TestClass.test0() Time elapsed: 0 sec <<< FAILURE!
java.lang.NullPointerException
at de.dk.spielwiese.TestClass.test0(TestClass.java:24)
我能想到的非常明显且唯一的原因是没有调用init()
方法。 @BeforeEach
的文档说
@BeforeEach用于表示带注释的方法应该是 在每个@Test,@ RepeatedTest,@ ParameterizedTest之前执行, @TestFactory和当前测试类中的@TestTemplate方法。
我也尝试在eclipse中运行测试,并且它们总是没有任何错误地通过。
我正在使用maven 3.5.3。 我在我的pom.xml中将JUnit Jupiter 5.1.0声明为依赖
<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>de.dk</groupId>
<artifactId>spielwiese</artifactId>
<version>0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Spielwiese</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<archive>
<manifest>
<mainClass>de.dk.spielwiese.Spielwiese</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<appendAssemblyId>false</appendAssemblyId>
<finalName>Spielwiese</finalName>
</configuration>
<executions>
<execution>
<id>assemble-all</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.2</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>de.dk</groupId>
<artifactId>util</artifactId>
<version>0.0.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
</dependencies>
为什么我的init()
方法没有被调用?
答案 0 :(得分:14)
未调用您的init()
方法,因为您没有指示Maven Surefire使用JUnit平台Surefire提供程序。
因此,令人惊讶您的测试甚至没有使用JUnit运行。相反,它正在运行Maven Surefire支持他们所谓的POJO Tests。
将以下内容添加到pom.xml
可以解决问题。
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-surefire-provider</artifactId>
<version>1.1.0</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
答案 1 :(得分:1)
我的 gradle 项目遇到了同样的问题。
注意到,@Test注解使用了错误的包(org.junit.Test
)和使用正确包(org.junit.jupiter.api.Test
)后修复的问题
答案 2 :(得分:0)
Sam Brannen的答案对我有用,但是,除非将junit-platform-surefire-provider升级到1.2.0,否则它似乎不适用于2.22.0版本的maven-surefire-plugin。注意!
答案 3 :(得分:0)
缺少junit-jupiter-api
依赖项
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
</plugin>
</plugins>
答案 4 :(得分:0)
如今,没有必要将提供程序添加到插件。只需将junit-jupiter-engine添加到您的依赖项中即可(如官方文档https://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html中所述)。
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.1</version>
<scope>test</scope>
</dependency>
答案 5 :(得分:0)
就我而言,问题是我在测试的子类中覆盖了一个用@BeforeEach 注释的方法,因此没有调用超级方法。