在 IntelliJ IDEA 中并行运行 JUnit 测试

2022-09-02 13:26:12

我有一大套测试,大约需要半个小时才能运行,并希望能够并行测试课程。

有没有办法用IntelliJ IDEA 9做到这一点?


答案 1

为子孙后代迟到。

通过在测试的运行配置中更改,可以使 JUnit 测试并行(或串行)运行到 IntelliJ 中的任何粒度级别。Fork mode

请注意不要将其与选项混淆,该选项允许您在 IDE 中多次启动测试执行。Allow parallel run

To specify the parallelization of a JUnit test (or group of tests) in IntelliJ, open the Run Configuration for that test and change the Fork mode setting or the Allow parallel run setting. This image depicts IntelliJ IDEA 2018.3.4


答案 2

IDEA将只从版本10开始理解并行JUnit测试。

有一个跟踪器问题,您可以投票并观察进度:http://youtrack.jetbrains.net/issue/IDEA-47103

我们计划在IDEA 10中添加它,但优先级将取决于票数。


推荐