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
_アノテーションが付けられた「testing」メッセージを受け取りますが、「before」メッセージは出力されません。
_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を使用しています。 JUnit Jupiter 5.1.0をpom.xmlの依存関係として宣言しました
_<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()
メソッドが呼び出されないのはなぜですか?
init()
メソッドは、JUnitプラットフォームSurefireプロバイダーを使用するようにMaven 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>
Sam Brannenの答えは私にとってはうまくいきましたが、junit-platform-surefire-providerを1.2.0にアップグレードしない限り、maven-surefire-pluginの2.22.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>
有る 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>