如何使用testng在maven中依次运行整个测试用例?

时间:2015-04-15 11:46:04

标签: java testng

  1. 我想使用testng在java maven中依次运行我的整个测试用例。

  2. 如何按顺序运行测试套件?

1 个答案:

答案 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

希望这些信息能够为您提供正确的指导。