不使用过时的cucumber-jvm-parallel-plugin,是否可以使用一个运行器类并行运行测试?
创始人
2024-12-28 19:30:19
0

是的,可以使用一个运行器类来并行运行测试,而不使用过时的cucumber-jvm-parallel-plugin。以下是一个示例解决方法:

  1. 创建一个运行器类,例如ParallelRunner.java:
import org.junit.runner.Description;
import org.junit.runner.Runner;
import org.junit.runner.notification.RunNotifier;
import org.junit.runners.ParentRunner;
import org.junit.runners.model.InitializationError;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;

public class ParallelRunner extends ParentRunner {
    private final List runners;

    public ParallelRunner(Class testClass) throws InitializationError {
        super(testClass);
        this.runners = new ArrayList<>();

        int threadCount = 5; // 设置并行线程数

        ExecutorService executorService = Executors.newFixedThreadPool(threadCount);
        CompletionService completionService = new ExecutorCompletionService<>(executorService);

        try {
            for (int i = 0; i < threadCount; i++) {
                completionService.submit(() -> {
                    Runner runner = new YourTestRunner(testClass); // 将YourTestRunner替换为你自己的TestRunner
                    return runner;
                });
            }

            for (int i = 0; i < threadCount; i++) {
                Future future = completionService.take();
                Runner runner = future.get();
                runners.add(runner);
            }
        } catch (InterruptedException | ExecutionException e) {
            throw new InitializationError(e);
        } finally {
            executorService.shutdownNow();
        }
    }

    @Override
    protected List getChildren() {
        return runners;
    }

    @Override
    protected Description describeChild(Runner child) {
        return child.getDescription();
    }

    @Override
    protected void runChild(Runner child, RunNotifier notifier) {
        child.run(notifier);
    }
}
  1. 创建你的测试类,并在测试类上使用ParallelRunner运行器类。例如,创建一个名为YourTest.java的测试类:
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(ParallelRunner.class)
public class YourTest {
    @Test
    public void test1() {
        // 测试1的代码
    }

    @Test
    public void test2() {
        // 测试2的代码
    }

    // 添加其他测试方法
}

通过在测试类上使用ParallelRunner运行器类,你可以并行地运行多个测试方法。请根据你的需求设置并行线程数(在ParallelRunner.java的threadCount变量中)。

注意:你需要将YourTestRunner替换为你自己的TestRunner类,以便实际运行你的测试方法。

相关内容

热门资讯

AWSECS:访问外部网络时出... 如果您在AWS ECS中部署了应用程序,并且该应用程序需要访问外部网络,但是无法正常访问,可能是因为...
AWSElasticBeans... 在Dockerfile中手动配置nginx反向代理。例如,在Dockerfile中添加以下代码:FR...
AWR报告解读 WORKLOAD REPOSITORY PDB report (PDB snapshots) AW...
AWS管理控制台菜单和权限 要在AWS管理控制台中创建菜单和权限,您可以使用AWS Identity and Access Ma...
银河麒麟V10SP1高级服务器... 银河麒麟高级服务器操作系统简介: 银河麒麟高级服务器操作系统V10是针对企业级关键业务...
北信源内网安全管理卸载 北信源内网安全管理是一款网络安全管理软件,主要用于保护内网安全。在日常使用过程中,卸载该软件是一种常...
群晖外网访问终极解决方法:IP... 写在前面的话 受够了群晖的quickconnet的小水管了,急需一个新的解决方法&#x...
​ToDesk 远程工具安装及... 目录 前言 ToDesk 优势 ToDesk 下载安装 ToDesk 功能展示 文件传输 设备链接 ...
Azure构建流程(Power... 这可能是由于配置错误导致的问题。请检查构建流程任务中的“发布构建制品”步骤,确保正确配置了“Arti...
不能访问光猫的的管理页面 光猫是现代家庭宽带网络的重要组成部分,它可以提供高速稳定的网络连接。但是,有时候我们会遇到不能访问光...