有什么方法可以并行运行JUnit5测试吗?

问题描述 投票:3回答:1

以前我使用Maven + Selenide + JUnit4进行测试,它很好,并行运行完美。例:

<plugins>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>${maven.surefire.plugin}</version>
    <configuration>
        <parallel>all</parallel>
        <perCoreThreadCount>true</perCoreThreadCount>
        <threadCount>4</threadCount>
        <perCoreThreadCount>false</perCoreThreadCount>
        <redirectTestOutputToFile>true</redirectTestOutputToFile>
    </configuration>
</plugin>

在詹金斯的工作中,我能够进行测试(以下示例)

mvn -Dtest=TestClassName test

我的测试在4个浏览器中运行。

在我切换到JUnit5之前,因为我想使用标签运行测试,例如

@Test
@Tag("smoke")
public void test1() {}

并运行下一个命令标记为“冒烟”的所有测试:

mvn -Dtag=smoke test

但我有下一个问题:并行执行不起作用,我仍然没有找到解决方案。我发现了这个bug https://github.com/junit-team/junit5/issues/1424

如何与JUnit5并行运行测试?

我试过在pom.xml中使用

<forkCount>2</forkCount>
<reuseForks>true</reuseForks>
<parallel>all</parallel>

它没有帮助,我创建了一个文件junit-platform.properties并插入其中

junit.jupiter.execution.parallel.enabled = true
junit.jupiter.execution.parallel.config.strategy = fixed

但无论如何我无法解决这个问题。

maven parallel-processing junit5 selenide
1个回答
0
投票

最后我找到了解决方案

在Maven + JUnit5上,并行执行只能通过类(而不是我习惯在JUnit4中使用的方法)

如何实现:只需将这两个字符串放在pom.xml中:

<forkCount>4</forkCount>
<reuseForks>false</reuseForks>

例:

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.22.0</version>
            <configuration>
                <forkCount>4</forkCount>
                <reuseForks>false</reuseForks>
                <properties>
                    <includeTags>${tag}</includeTags>
                </properties>
            </configuration>
            <dependencies>
                <dependency>
                    <groupId>org.junit.platform</groupId>
                    <artifactId>junit-platform-surefire-provider</artifactId>
                    <version>${junit.platform.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.junit.jupiter</groupId>
                    <artifactId>junit-jupiter-engine</artifactId>
                    <version>${junit.jupiter.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.apache.maven.surefire</groupId>
                    <artifactId>surefire-logger-api</artifactId>
                    <version>${surefire-logger-api}</version>
                </dependency>
            </dependencies>
        </plugin>

例如,你有3个带有测试的类,所以从控制台运行后,当前测试将创建3个浏览器实例(每个类一个),并且每个类内部测试将一致地执行,但是类是并行执行的。

© www.soinside.com 2019 - 2024. All rights reserved.