gpt4 book ai didi

java - 多次运行 TestNg 套件

转载 作者:塔克拉玛干 更新时间:2023-11-01 23:06:46 24 4
gpt4 key购买 nike

我说了 N 个测试类,我有一个测试套件说 testing.xml 可以运行所有这 N 个测试,如何多次运行作为测试套件的 testing.xml?请帮助我了解如何以编程方式多次运行它

<?xml version="1.0" encoding="UTF-8"?>
<suite name="Suite1">
<test name="exampletest1">
<classes>
<class name="tester.NewTest1" />
</classes>
</test>

<test name="exampletest2">
<classes>
<class name="tester.NewTest2" />
</classes>
</test>

</suite>

最佳答案

这里试试这个,你可以随意修改n次

for(int i=0;i<3;i++)
{
List<String> suites = new ArrayList<String>();
suites.add("testng.xml"); //path of .xml file to be run-provide complete path

TestNG tng = new TestNG();
tng.setTestSuites(suites);

tng.run(); //run test suite
}

关于java - 多次运行 TestNg 套件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38432145/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com