在同一版本中执行 JUnit 4 和 JUnit 5 测试

2022-08-31 22:07:22

在 Maven 项目中,我有一些依赖于 JUnit 4 的现有测试。由于多种原因,我无法在 JUnit 5 中迁移这些测试。
从本质上讲,某些测试依赖于使用 JUnit 4 运行器的库,代码迁移可能需要一些时间。

我希望所有这些人都使用JUnit 5创建新的测试类,该测试类现已发布并提供新的有趣功能。
如何做到这一点?


答案 1

JUnit 5 提供了一种开箱即用的方法

JUnit 5 = JUnit Platform + JUnit Jupiter + JUnit Vintage

每个都是一个不同的项目,使用它们都允许在同一项目中编译和执行JUnit 4和JUnit 5测试。

JUnit Jupiter是新的编程模型和扩展模型的组合,用于在JUnit 5中编写测试和扩展。

JUnit Vintage提供了一个TestEngine,用于在平台上运行基于JUnit 3和JUnit 4的测试。

JUnit 平台作为在 JVM 上启动测试框架的基础


更新 : 从 Maven Surefire 2.22.0

来自 JUnit 5 文档

从版本开始,Maven Surefire为在JUnit平台上执行测试提供本机支持。2.22.0

因此,配置要简单得多。
请注意,api 依赖项是可选的,因为现在所需的依赖项已经拉取了默认版本(junit 4 和 5 都是这种情况)。junit-4engineapi

下面是一个示例。pom.xml

<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>david</groupId>
    <artifactId>jupiter-4-and-5-same-build</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <junit-jupiter.version>5.1.0</junit-jupiter.version>
        <!-- optional : if we want to use a junit4 specific version -->
        <junit.version>4.12</junit.version>
    </properties>
    <dependencies>
        <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
        <dependency>
            <groupId>org.junit.vintage</groupId>
            <artifactId>junit-vintage-engine</artifactId>
            <version>${junit-jupiter.version}</version>
        </dependency>
        <!-- Optional : override the JUnit 4 API version provided by junit-vintage-engine -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.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项目。网址: https://github.com/ebundy/junit4-and-5-minimal-maven-project


旧方式:对于低于2.22.0的Maven Surefire

以下是与 Maven 一起使用的最小配置,用于配置项目以编译和运行 JUnit4 和 JUnit5 测试:

<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>mygroup</groupId>
    <artifactId>minimal-conf-junit4-5</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <properties>
        <!-- JUnit 5 depends on JDK 1.8 -->
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
        <!--  JUnit dependency versions -->
        <junit.version>4.12</junit.version>
        <junit-vintage-engine>4.12.1</junit-vintage-engine>
        <junit-jupiter.version>5.0.1</junit-jupiter.version>
        <junit-platform.version>1.0.1</junit-platform.version>
    </properties>

    <dependencies>
        <!--JUnit Jupiter API to write and compile tests with JUnit5 -->
        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-api</artifactId>
            <version>${junit-jupiter.version}</version>
            <scope>test</scope>
        </dependency>
        <!-- JUnit 4 to make legacy JUnit 4 tests compile -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.19.1</version> <!-- matters until now-->
                <dependencies>
                    <!-- to let surefire to run JUnit 4 but also JUnit 5 tests -->
                    <dependency>
                        <groupId>org.junit.platform</groupId>
                        <artifactId>junit-platform-surefire-provider</artifactId>
                        <version>${junit-platform.version}</version>
                    </dependency>
                    <!-- JUnit vintage engine to run JUnit 3 or JUnit 4 tests -->
                    <dependency>
                        <groupId>org.junit.vintage</groupId>
                        <artifactId>junit-vintage-engine</artifactId>
                        <version>${junit-vintage-engine}</version>
                    </dependency>
                    <!-- JUnit 5 engine to run JUnit 5 tests -->
                    <dependency>
                        <groupId>org.junit.jupiter</groupId>
                        <artifactId>junit-jupiter-engine</artifactId>
                        <version>${junit-jupiter.version}</version>
                    </dependency>
                </dependencies>
            </plugin>
        </plugins>
    </build>
</project>

现在编译并运行 JUnit 4 和 JUnit 5 测试。mvn test

注意1:()和()依赖项未指定相同的确切版本。
这根本不是问题,因为:junit-vintage-engine4.12.1junit4.12

  • 他们的释放与他们之间没有关系

  • junit-vintage-engine旨在运行任何 JUnit 34 测试。

注意2:无论您想要编译JUnit 5测试类还是JUnit 4和JUnit 5测试类,版本都很重要。
该插件的下一个版本在JUnit 5测试执行期间确实会导致一些异常,但最终解决了这个问题(请参阅答案的第一部分:“更新:来自Maven Surefire 2.22.0”)。2.19.12.22.0


答案 2

JUnit 在 https://github.com/junit-team/junit5-samples 有许多示例项目

我有一个Gradle项目,遵循 https://github.com/junit-team/junit5-samples/tree/main/junit5-migration-gradle 为我工作。

https://github.com/junit-team/junit5-samples/tree/main/junit5-migration-maven 是Maven的等价物 - 我没有尝试过,但我想它也可以工作。


推荐