SurefireはJunit 5テストを採用していません


113

JUnit 5で簡単なテストメソッドを作成しました。

public class SimlpeTest {
    @Test
    @DisplayName("Some description")
    void methodName() {
        // Testing logic for subject under test
    }
}

しかし、実行するとmvn test、私は得ました:

-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running SimlpeTest
Tests run: 0, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.001 sec

Results :

Tests run: 0, Failures: 0, Errors: 0, Skipped: 0

どういうわけか、surefireはそのテストクラスを認識しませんでした。私のpom.xmlように見えます:

<properties>
    <java.version>1.8</java.version>
    <junit.version>5.0.0-SNAPSHOT</junit.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.junit</groupId>
        <artifactId>junit5-api</artifactId>
        <version>${junit.version}</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>snapshots-repo</id>
        <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        <releases>
            <enabled>false</enabled>
        </releases>
        <snapshots>
            <updatePolicy>always</updatePolicy>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
            </configuration>
        </plugin>
    </plugins>
</build>

これを機能させる方法はありますか?


1
現時点では、surefireプラグインの特別な実装を使用する必要があります。JUnitのチームの例を確認してくださいここに
ジャー

1
質問は古いバージョンに基づいていますが、この回答は現在のバージョンに基づいています(2016年12月現在)。
Nicolai

@Nicolai回答を更新していただきありがとうございます。とにかく時間があれば、質問の編集をお願いします。
Ali Dehghani 2016

1
このエラーはそのように発生しなくなりました。テスト実行の欠如の最も可能性の高いケースは、この質問でカバーされています
Nicolai

テストファイルが正しい場所にあることを確認します。デフォルトでは、testはsrcフォルダーの下のmainの兄弟でなければなりません。
Joe Bowbeer

回答:


115

maven-surefire-plugin現在のところ、JUnit 5を完全にはサポートしていませSUREFIRE-1206にこのサポートを追加することに関して未解決の問題があります。

そのため、カスタムプロバイダーを使用する必要があります。1つはすでにJUnitチームによって開発されています。ユーザーガイドから、junit-platform-surefire-providerプロバイダーとTestEngine新しいAPIの実装を追加する必要があります。

<build>
  <plugins>        
    <plugin>
      <artifactId>maven-surefire-plugin</artifactId>
      <!-- latest version (2.20.1) does not work well with JUnit5 -->
      <version>2.19.1</version>
      <dependencies>
        <dependency>
          <groupId>org.junit.platform</groupId>
          <artifactId>junit-platform-surefire-provider</artifactId>
          <version>1.0.3</version>
        </dependency>
        <dependency>
          <groupId>org.junit.jupiter</groupId>
          <artifactId>junit-jupiter-engine</artifactId>
          <version>5.0.3</version>
        </dependency>
      </dependencies>
    </plugin>
  </plugins>
</build>

また、次のjunit-jupiter-apiスコープで依存関係を宣言してtestください。

<dependencies>
  <dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-api</artifactId>
    <version>5.0.3</version>
    <scope>test</scope>
  </dependency>
</dependencies>

25
現時点では、surefire 2.20.1はjunit 5プロバイダーでは動作しないため、サンプルで使用されている2.19.1は、1年が経過しても有効です。
スプラチ

1
surefire 2.21.0も動作しません。2.19.1にロールバックする必要があります
valodzka

@valodzka私にとっては、プラグインとjunit5の2.21.0以降のバージョンで動作します。junit.org/junit5/docs/current/user-guide/…を
Thirler、

検証済み:and maven-surefire-plugin v2.21.0junit-jupiter-engine v5.2.0junit-platform-surefire-provider v1.2.0
povisで正常に

2
この構成は、Surefire 2.22.0以降では失敗します。Jure depsをSurefire構成から除外する必要があります。私はここでそれについて簡単な記事を書いた- springframework.guru/...
ジョン・トンプソン

51

アップデート2

問題はMaven Surefireプラグインv2.22.0で修正されました

新しいバージョンはMaven Central Repositoryで入手できます。

メイベン

<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.0</version>
</dependency>

Gradle

compile group: 'org.apache.maven.plugins', name: 'maven-surefire-plugin', version: '2.22.0'

更新

以下のようマリアンは指摘し、最新バージョンのJUnitの5プラットフォームシュアプロバイダ(1.2.0)は、最新バージョンのサポートのMavenプラグインシュア(2.21.0)を

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.2.0</version>
                </dependency>
            </dependencies>
        </plugin>



pom.xml

<dependencies>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.2.0</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.21.0</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.2.0</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

TestScenario.java

package test;

import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

public class TestScenario {

    @Test
    @DisplayName("Test 2 + 2 = 4")
    public void test() {
        Assertions.assertEquals(4, 2 + 2);
    }
}

出力(mvn clean install)

...
[INFO] --- maven-surefire-plugin:2.21.0:test(default-test)@ test --- [INFO]
[INFO] -------------- -----------------------------------------
[情報]テスト
[情報]- -------------------------------------------------- ---
[INFO] test.TestScenario [INFO]の実行中の
テスト:1、失敗:0、エラー:0、スキップ:0、経過時間:0.005秒-test.TestScenario
[INFO]
[INFO]結果:
[INFO ]
[情報] テストの実行:1、失敗:0、エラー:0、スキップ:0
...


今日までの最も簡単な方法:

    <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>

1
これは、クラス名のTestが原因でのみ機能します。クラスの名前をExampleScenarioに変更します-検出されません。(Surefire 2.22.0)
Alexei Vinogradov

@AlexeiVinogradovはい。予想される動作です。詳細については、こちらをご覧ください:stackoverflow.com/a/6178629/3523579
ミハイルホロドコフ2018

bevare、junitエンジンバージョンとSpring Boot親バージョン。依存関係を指定するだけjunit-jupiter-engine:5.1は、新しいバージョンでは機能しません。Springブートは、JUnit4 <junit.version> 4.13をまだ事前設定しています。
Wooff

20

JUnitの5ドキュメント

バージョンから2.22.0、Maven SurefireはJUnitプラットフォームでテストを実行するためのネイティブサポートを提供します。

さらに、maven-surefire-pluginドキュメントを読むことができます

JUnit 5プラットフォームの使用

JUnitプラットフォームを使い始めるTestEngineには、プロジェクトに少なくとも1つの実装を追加する必要があり ます。たとえば、Jupiterでテストを作成する場合はjunit-jupiter-engine 、POMの依存関係にテストアーティファクトを追加します

したがって、JUnit 5テストを実行するにはそれで十分です。

<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>davidxxx</groupId>
    <artifactId>minimal-pom-junit5</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <junit-jupiter.version>5.2.0</junit-jupiter.version> 
        <!--optional below but good practice to specify our java version-->
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>

        <!--optional below -->
        <!-- add any JUnit extension you need such as -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.22.0</version>
            </plugin>
        </plugins>
    </build>

</project>

私のGitHubスペースに、閲覧/複製できる実用的なサンプルmavenプロジェクトを追加しました。
URL:https : //github.com/ebundy/junit5-minimal-maven-project


9

JUnit5とMavenでこの問題に遭遇しましたが、junit-jupiter-engine だけが依存関係として追加された場合でも、テストは一部のプロジェクトでは実行され、他のプロジェクトでは実行されないことにも気付きました。そして、私はここのコメントで同じパターンをちょっと見ています:上記の@Alexコメントで、以前のバージョンのsurefire / junit / platformでさえ、彼は何の問題もないことがわかります。

しばらく頭を悩ませた後、テストが実行されないプロジェクトは、テストメソッド名に「test」という単語が含まれていないプロジェクトであることに気付きました。これはhttp://maven.apache.org/surefire/maven-surefire-plugin/examples/inclusion-exclusion.htmlによって義務付けられていませんが

つまり、

    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter-engine</artifactId>
        <version>5.2.0</version>
        <scope>test</scope>
    </dependency>

この

@Test
public void something() {
    assertTrue(true);
}

実行されませんが、

@Test
public void testSomething() {
    assertTrue(true);
}

実行されます!

この問題はロシアの人形として展開されます...

とにかく、@ Mikhail Kholodkovの+1により、更新された回答ですべての問題が一度に修正されます!


また、mvn 3.5.0、jdk 1.8.0_101で、クラス名に「Test」が含まれておらず、テストが選択されないという問題が発生しました。これにより、それを見つけることができました。
dann.dev

確かに、あなたはmaven.apache.org/surefire/maven-surefire-plugin/examples/に準拠する必要があります...しかし、私は別のことについて話していました。
Fabien M

はい、2つの問題があったことがわかりました。最初の問題は、Mavenの基本的なテストの基本的なルールを覚えていなかったことです。2番目は、JUnit 5ランチャーを取得するためにEclipseのMaven> updateプロジェクトを実行していませんでした。
dann.dev 2018年

クラスとメソッドはパブリックでなければならないことを付け加えておきます。
ジョナスバラージュ

6

2019年8月に私がここで尋ねたのと同じ問題が発生しました:Mavenは、実行するJUnitテストを静かに見つけることができません。これらの答えは正しい方向に導いてくれましたが、問題をさらに簡潔に解決できることがわかりました。JUnit5サンプルのMavenプロジェクトからソリューションをコピーしました

JUnit 5.5.1およびmaven-surefire-plugin2.22.2以降、junit-platform-surefire-provider依存関係を追加する必要はありません。これで、1つの依存関係と1つのプラグインを指定するだけで十分pom.xmlです。

<dependencies>
    <dependency>
        <groupId>org.junit.jupiter</groupId>
        <artifactId>junit-jupiter</artifactId>
        <version>5.5.1</version>
        <scope>test</scope>
    </dependency>
</dependencies>

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.2</version>
        </plugin>
    </plugins>
</build>

これは正しい簡潔なアプローチです。OpenJDK 11およびJUnit 5.6.2で動作します。
シルバー

5

補足すると、surefire 2.22.0 + junit 5.2.0 + platform 1.2.0も機能します。添付されているのはあなたのレフェクネ用の実用的なポンです:

    <?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.jjhome.junit5</groupId>
    <artifactId>junit5-hone</artifactId>
    <packaging>jar</packaging>
    <version>1.0.0-SNAPSHOT</version>
    <name>junit5-home</name>

    <properties>
        <maven.compiler.source>1.6</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <junit5.version>5.2.0</junit5.version>
        <platform.version>1.2.0</platform.version>
        <surefire.version>2.22.0</surefire.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-params</artifactId>
            <version>${junit5.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit5.version}</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.platform</groupId>
            <artifactId>junit-platform-launcher</artifactId>
            <version>${platform.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-runner</artifactId>
            <version>${platform.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>${surefire.version}</version>
                <dependencies>
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>${platform.version}</version>
                    </dependency>
                    <dependency>
                        <groupId>org.junit.jupiter</groupId>
                        <artifactId>junit-jupiter-engine</artifactId>
                        <version>${junit5.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
</project>

私の問題は、私が持っていなかったということでしたjunit-vintage-engine依存関係として、そして私のテストの全ては、JUnitの4のために書かれた
マーク

指定されたjunit、プラットフォーム、およびシュアファイアのバージョンの組み合わせでうまくいきました。ありがとう!
CoderTR

4

私の場合、これはクラスパス(SUREFIRE-1527)のTestNGが原因でした。Groovy 2.5.5 POMはそれをgroovy-testngモジュールで提供しています。

手動で指定されたテストフレームワークプロバイダー(https://maven.apache.org/surefire/maven-surefire-plugin/examples/providers.htmlで説明されています)が問題を解決しました:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.22.1</version>

    <dependency>
        <groupId>org.apache.maven.surefire</groupId>
        <artifactId>surefire-junit-platform</artifactId>
        <version>2.22.1</version>
    </dependency>

あなたはラップすべき<dependency><dependencies>、あなたのコードサンプルで。
user1053510


1

同様の問題があり、Surefireでゼロテストが認識されました。

私の問題は以下に関連していることが判明しました(JUnit 5.1.0 / mavenドキュメントから):

Surefire 2.20でのメモリリークとJava 9での実行の問題により、junit-platform-surefire-providerは現在、Surefire 2.19.1でのみ機能します。

Surefire(2.21.0)とjunit-platform-surefire-provider(1.1.0)の最新バージョンを使用しようとしましたが、動作しませんでした(Java 8または9のどちらでも)

Surefire 2.19.1に戻すと問題が解決しました。

この問題によると、修正はjunit-platform-surefire-providerのバージョン1.2.0に含まれる予定です(現在SNAPSHOTとしてのみ入手可能)。


1
私はSNAPSHOTを試してみましたが、すべて機能しています(Surefire 2.21.0で)。うまくいけば、リリース時にまだ機能しています。
user7610

1

私はそれを機能させることができたことに気付いた1つのこと:

  • テストクラスの名前を付けてもClinicCalendarShouldMavenに認識されない
  • テストクラスに名前をClinicCalendarTest付けるとMavenに取り上げられる

そのため、デフォルトで確実なプラグインにある種の構成やパラメーターなどが欠けていない限り、テストクラスにXXXTestという名前を付ける必要があります。


0

maven-surefire-plugin:2.20Junit5テストを問題なく実行するように更新しています。

しかし、私はM6Junit5 のバージョンを使用しています。


それほど単純ではありません(少なくとも現時点では)。JUnit 5ユーザーガイドを
FrVaBe

@FrVaBe奇妙なことに、私の作品ではm6バージョンを使用しています。
LazerBanana 2017

2
surefire-2.20.1 + junit-5.0.2に疲れましたが、うまくいきませんでした。私も、surefire-2.20.1 + junit-5.1.0-M6を試しましたが、うまくいきませんでした
Eric

0

私の場合、surefireプラグインはjupiter-engine / apiの正しいバージョンを取得していません。そしてそれは、Maven 3.6.1とsurefirepluginバージョン2.22.2を実行していても同じです。

これで私の確実なプラグイン構成は次のようになります。

<pluginManagement>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.2</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>5.5.2</version>
                </dependency>
            </dependencies>
        </plugin>

        ...
    </plugins>
</pluginManagement>

さらに、これらのバージョンを強制する必要がありました:

<dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>5.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-engine</artifactId>
            <version>1.5.2</version>
        </dependency>
        <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-commons</artifactId>
            <version>1.5.2</version>
        </dependency>
    </dependencies>
</dependencyManagement>

私の場合、5.5.2が1.5.2ではなく間違ったプラットフォームバージョン1.3.2にリンクされていたようです。

すべてのJUnit5テストがすぐに取得されます。確実なプラグインの2.22.0でさえ、これは私には当てはまりませんでした!

お役に立てば幸い...


0

私は両方同じ問題に直面していたjunit5し、maven-surefireテストが失敗していました。しかし、junit4うまく動いていた。以下の組み合わせは私のために働きました、私はバージョン管理を追加しません。junit-bom依存関係管理に使用します。使用するspring-boot 2.1.4

   <dependencyManagement>
    <dependencies>
            <dependency>
                <groupId>org.junit</groupId>
                <artifactId>junit-bom</artifactId>
                <version>5.6.1</version>
                <scope>import</scope>
                <type>pom</type>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <dependencies>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <scope>test</scope>
        </dependency>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
        </plugin>
    </plugins>
</build>

必ず最新バージョンのEclipseにアップグレードしてください

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.