我继承了用java / eclipse / testng编写的java测试应用程序,我是.net开发人员。我可以运行测试套件,但是我很难确定如何在套件运行后立即重新运行测试。有没有人能指出我正确的方向?
谢谢!
答案 0 :(得分:0)
重新运行测试?你在这里是什么意思?
您想要一个接一个地运行多个套件吗?
如果是的话
<suite name="automated suites">
<suite-files>
<suite-file path="suitea.xml" />
<suite-file path="suiteb.xml" />
...
</suite-files>
</suite>
还是同一套房?
<suite name="automated suites">
<suite-files>
<suite-file path="suitea.xml" />
<suite-file path="suitea.xml" />
...
</suite-files>
</suite>