无法在没有至少一个测试引擎的情况下创建启动器;考虑在 Junit 5 中将引擎实现 JAR 添加到类路径中

2022-08-31 22:08:23

当我尝试在 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)

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


答案 1

ALPHA 快照伪影(即 )与 M2 伪影(即 )混合使用将不起作用。org.junit:junit5-api:5.0.0-SNAPSHOTorg.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,您还需要在类路径上。junit-jupiter-apiTestEnginejunit-jupiter-engine

正如 Nicolai Parlog 所指出的,您可以添加为 ;但是,这不会在 IDE 的类路径中包含 。junit-jupiter-enginemaven-surefire-pluginJupiterTestEngine

如果您仅通过 Maven 或使用 IntelliJ 2016 的最新 beta 版本(内置了对 JUnit 5 的支持)运行测试,那么您可能并不关心是否在 IDE 的类路径上。但。。。如果您使用的是 Eclipse、NetBeans 或 IntelliJ 的非 beta 版本,那么您肯定还需要在 IDE 中的类路径上使用。JupiterTestEngineJupiterTestEngine

问候

Sam (core JUnit 5 committer)


答案 2

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

JUnit 平台可以运行基于 JUnit 4 的测试,只要您在 JUnit 4 上配置 test实现依赖关系和在 JUnit Vintage TestEngine 实现上配置 testRuntimeOnly 依赖关系,类似于以下内容。

还需要一个测试引擎:

dependencies {
    testImplementation("junit:junit:4.13.2")
    testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.8.2")
}

推荐