Run JUnit4-Tests parallel in Eclipse

2019-04-21 10:51发布

maven-surefire-plugin enables running JUnit tests in parallel[1] - is there way to run JUnit-Tests in Eclipse in parallel, too?

[1] e.g.

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.12</version>
    <configuration>
        <parallel>methods</parallel>
    </configuration>
</plugin>

"Running tests in parallel" https://maven.apache.org/plugins/maven-surefire-plugin/examples/junit.html

1条回答
迷人小祖宗
2楼-- · 2019-04-21 11:46

You can use tempus-fugit to run tests in parallel in Eclipse. This should work.

查看更多
登录 后发表回答