我使用gradle + testNG并行运行多个测试套件 使用Gradle时如何设置suitethreadpoolsize参数? http://testng.org/doc/documentation-main.html#parallel-suites
感谢
答案 0 :(得分:1)
Gradle目前不支持此参数。 https://docs.gradle.org/current/groovydoc/org/gradle/api/tasks/testing/testng/TestNGOptions.html
您只能指定threadCount
。像:
test {
useTestNG() {
threadCount 3
...
}
}