43

junit5 でテスト ケースを実行しようとしたときに、次の execption が表示されました。

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test (default-test) on project CRUD-App: Execution default-test of goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test failed: There was an error in the forked process
org.junit.platform.commons.util.PreconditionViolationException: Cannot create Launcher without at least one TestEngine; consider adding an engine implementation JAR to the classpath
   at org.junit.platform.commons.util.Preconditions.condition(Preconditions.java:161)
   at org.junit.platform.launcher.core.DefaultLauncher.<init>(DefaultLauncher.java:52)
   at org.junit.platform.launcher.core.LauncherFactory.create(LauncherFactory.java:42)
   at org.junit.platform.surefire.provider.JUnitPlatformProvider.invoke(JUnitPlatformProvider.java:59)
   at org.apache.maven.surefire.booter.ForkedBooter.invokeProviderInSameClassLoader(ForkedBooter.java:286)
   at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:240)
   at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:121)

pom.xml

<dependencies>
    ...
    <dependency>
        <groupId>org.junit</groupId>
        <artifactId>junit5-api</artifactId>
        <version>5.0.0-SNAPSHOT</version>
        <scope>test</scope>
    </dependency>
</dependencies>
<build>
    <plugins>        
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.0.0-M2</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

テスト クラス:

public class PersonServiceTest {

    final Database database = Database.from("jdbc:h2:mem:" + App.DB_NAME);

    final PersonService personService = new PersonService(database);

    public PersonServiceTest() {
    }

    @Test
    @DisplayName("@Person#insert()")
    public void testInsert() {
        personService.insert(new PersonBuilder()
                .setId(1).setName("Bhuwan")
                .setAddress("KTM")
                .setContactNo("984849").createPerson()
        );
    }

}

Mavenの目標: mvn test

4

5 に答える 5

39

ALPHAスナップショット アーティファクト (つまりorg.junit:junit5-api:5.0.0-SNAPSHOT) とM2アーティファクト (つまり) を混在org.junit.platform:junit-platform-surefire-provider:1.0.0-M2させても機能しません。

ユーザー ガイドのMavenセクションでは、 junit5-maven-consumerプロジェクトpom.xmlからをチェックアウトすることを提案しています。その例に従うと、次のような結果になります。

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <java.version>1.8</java.version>
    <junit.jupiter.version>5.0.0-M2</junit.jupiter.version>
    <junit.platform.version>1.0.0-M2</junit.platform.version>
</properties>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>${java.version}</source>
                <target>${java.version}</target>
            </configuration>
        </plugin>
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>${junit.platform.version}</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

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

テストを作成junit-jupiter-apiするには、 ;のみが必要です。ただし、テストを実行TestEngineするには、クラスパスに が必要です。したがって、JUnit Jupiter の場合junit-jupiter-engine、クラスパスも必要です。

Nicolai Parlog が指摘したように、 ;junit-jupiter-engineの依存関係として追加できます。maven-surefire-pluginただし、JupiterTestEngineIDE のクラスパスには含まれません。

Maven または IntelliJ 2016 の最近のベータ版 (JUnit 5 のサポートが組み込まれている) を使用してのみテストを実行している場合JupiterTestEngineは、IDE のクラスパスに があるかどうか気にしないかもしれません。しかし... Eclipse、NetBeans、または非ベータ版の IntelliJ を使用している場合はJupiterTestEngine、IDE のクラスパスにも .

よろしく、

Sam (コア JUnit 5 コミッター)

于 2016-08-17T11:11:56.597 に答える
11

Maven Surefire プラグインには、JUnit 5 プロバイダーだけでなく、TestEngineテストを実行するための実装も必要です。JUnit 5のドキュメントを引用するには:

Maven Surefire でテストを実行するTestEngine には、ランタイム クラスパスに実装を追加する必要があります。

それに応じて、次のように動作します。

<build>
    <plugins>        
        <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.19</version>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>1.0.0-M4</version>
                </dependency>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>5.0.0-M4</version>
                </dependency>
            </dependencies>
        </plugin>
    </plugins>
</build>

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

この構成により、エンジンはテスト コードではなく、確実なプラグインの依存関係になることに注意してください。

于 2016-08-17T10:26:32.823 に答える
1

以下の依存関係を追加するだけで、この問題は解決しました。

testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
于 2022-01-14T11:39:35.840 に答える