使用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)
...
万分感谢你的帮助!
答案 0 :(得分:1)
使用
<suite group-by-instances="true">