我想使用testng在java maven中依次运行我的整个测试用例。
如何按顺序运行测试套件?
答案 0 :(得分:1)
使用Maven Surefire Plugin with TestNG(使用Suite XML文件)
<plugins>
[...]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.18.1</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
[...]
</plugins>
要了解如何配置testng.xml,请关注TestNG documentation。
希望这些信息能够为您提供正确的指导。