43

当我尝试在junit5中运行测试用例时,我得到了以下执行:

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()
        );
    }

}

马文目标: 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部分建议查看pom.xmljunit5 -maven-consumer项目。如果您按照该示例进行操作,您最终将得到类似以下内容。

<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。但是,这不会包含JupiterTestEngine在您的 IDE 的类路径中。

如果您仅通过 Maven 或 IntelliJ 2016 的最新 beta 版本(内置对 JUnit 5 的支持)运行测试,那么您可能不在乎是否JupiterTestEngine位于 IDE 的类路径中。但是...如果您使用的是 Eclipse、NetBeans 或 IntelliJ 的非 beta 版本,您肯定也希望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>

请注意,此配置使引擎成为 surefire 插件的依赖项,而不是您的测试代码的依赖项。

于 2016-08-17T10:26:32.823 回答
3

在这里结束,因为使用 Gradle 和 JUnit 4 遇到相同的错误。这种情况下的解决方案可以在文档中找到:

只要您配置对 JUnit 4 的 testImplementation 依赖项和对 JUnit Vintage TestEngine 实现的 testRuntimeOnly 依赖项,JUnit 平台就可以运行基于 JUnit 4 的测试,如下所示。

还需要一个测试引擎:

dependencies {
    testImplementation("junit:junit:4.13.2")
    testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.8.2")
}
于 2021-12-16T18:04:58.263 回答
1

只需添加以下依赖项即可解决此问题。

testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
于 2022-01-14T11:39:35.840 回答
0

我解决它改变

classpath "org.springframework.boot:spring-boot-gradle-plugin:2.1.8.RELEASE"

classpath "org.springframework.boot:spring-boot-gradle-plugin:2.2.0.RELEASE"

于 2019-11-07T17:28:37.133 回答