1

使用 TestNG @DataProvider 将按以下顺序触发测试:

假设 dataprovider 返回{ [0], [1], [2] },TestNG 运行:

test1(0)
test1(1)
test1(2)

test2(0)
test2(1)
test2(2)
...

有什么方法可以触发测试按此顺序运行?

test1(0)
test2(0)

test1(1)
test2(1)

test1(2)
test2(2)
...

千感谢您的帮助!

4

1 回答 1

1

利用

<suite group-by-instances="true">
于 2011-11-10T18:45:27.690 回答