Mavenの実行
mvn clean test
Maven プロジェクトの 1 つに使用しようとしていますが、フェーズjunit5
中に単体テストを実行できません-test
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M3</version>
</dependency>
私が得る出力は -
[INFO] --- maven-surefire-plugin:2.19.1:test (default-test) @ utils --- ------------------------------------------------------- T E S T S ------------------------------------------------------- Results : Tests run: 0, Failures: 0, Errors: 0, Skipped: 0
上記のソリューションを実装しようとしました @ Surefire は依存関係を更新するためにJunit 5 テストを取得していません-
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.0.0-M3</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit5-api</artifactId>
<version>5.0.0-ALPHA</version><!--https://mvnrepository.com/artifact/org.junit/junit5-api -->
<scope>test</scope>
</dependency>
プラグインを次のように更新します -
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>surefire-junit5</artifactId>
<version>5.0.0-ALPHA</version><!--couldn't find this on the central though-->
</dependency>
</dependencies>
</plugin>
しかし、出力は同じままです。
質問- このカスタム プロバイダーはサポートされなくなりましたか、または を使用してテストを実行するための解決策はありmaven
ますjunit5
かjunit5-api
?
注- テストの実行は、JUnit-4 で正常に機能していました。