我无法找到配置 gradle 以使用 JUnit 并行运行黄瓜功能的解决方案。
Cucumber 站点使用 Maven 解决方案进行了记录,用于并行执行。它没有记录在 gradle 中。
请帮助我进行 gradle 配置,它相当于 pom.xml 中的以下配置。
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<parallel>methods</parallel>
<threadCount>4</threadCount>
</configuration>
</plugin>