我能够按顺序执行上面的套件,但我希望并行执行这些套件。
dgrid tree
答案 0 :(得分:1)
请参考TestNG文档:
http://testng.org/doc/documentation-main.html#parallel-running
并行运行套件:
java org.testng.TestNG -suitethreadpoolsize 2 suite1.xml suite2.xml
对于运行tests / classes / methods / instances,在testng xml中定义它
<suite name="Main suite" parallel="methods/classes/tests/instances" thread-count="5">
答案 1 :(得分:0)
我对类似问题here的回答可能对您有所帮助。您正在使用套件套件XML配置走上正轨。
自从我使用这种类型的配置以来已经有一段时间了,但我在答案中发布的是我如何能够让它并行工作。可能存在其他方法,但希望这会让你开始。