TestNG 如何使用Maven TestNG执行失败的测试用例
TestNG是一个测试框架,可以使用Maven作为构建工具。它有助于在pom.xml文件中的一个位置维护依赖项及其版本。
Maven提供了使用surefire插件运行的灵活性。在测试用例失败并且用户想要重新运行时,会出现一些情况。在这种情况下,maven会在目标文件夹中创建一个testng-failed.xml文件。最简单的方法是从命令行重新运行xml文件,或者在第一次运行后在pom.xml中提及该文件。确保在pom.xml中提及xml文件时,该文件应该存在,否则会引发错误。
本文将说明如何通过maven surefire重新运行失败的测试用例。
步骤
- 步骤1:创建一个TestNG类 – NewTestngClass
-
步骤2:在第二个测试失败的类中编写2个@Test方法。
-
步骤3:现在创建testNG.xml如下所示
-
步骤4:在pom.xml中添加suiteXMLFiles标签,并为testng.xml文件路径指定一个变量名称,如程序部分所示。
-
步骤5:现在,使用以下命令行运行 – mvn test -DxmlFilePath=testng.xml文件路径。
-
步骤6:验证testng-failed.xml是否在target/surefire-reports文件夹中创建。
-
步骤7:现在重新运行这个xml文件,可以在pom.xml或命令行中提及。
示例
以下代码展示了如何只运行一个测试方法而不是一个大的测试套件:
src/NewTestngClass.java
import org.testng.annotations.Test;
public class NewTestngClass {
@Test()
public void testCase1() {
System.out.println("in test case 1 of NewTestngClass");
}
@Test(groups = { "group2", "group3" })
public void testCase2() {
System.out.println("in test case 2 of NewTestngClass");
assert false;
}
}
pom.xml
这是一个用于组织依赖项、插件和运行 TestNG 测试用例的 Maven 配置文件。
在执行部分测试而不是整个套件时非常方便。
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.sample</groupId>
<artifactId>TestNGProjectct</artifactId>
<\version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M5</version>
<configuration>
<suiteXmlFiles> <suiteXmlFile>${xmlFilePath}</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.3.0</version>
</dependency>
</dependencies>
</project>
输出
[INFO] Running TestSuite
...
... TestNG 7.3.0 by Cédric Beust (cedric@beust.com)
...
Testcase 1 - executed
Testcase 2 - skip exception example
[ERROR] Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.314 s <<< FAILURE! - in TestSuite
[ERROR] NewTestngClass.testcase2 Time elapsed: 0.008 s <<< FAILURE!
java.lang.AssertionError
at NewTestngClass.testcase2(NewTestngClass.java:16)
[INFO]
[INFO] Results:
[INFO]
[ERROR] Failures:
[ERROR] NewTestngClass.testcase2:16
[INFO]
[ERROR] Tests run: 2, Failures: 1, Errors: 0, Skipped: 0
[INFO]
[ERROR] There are test failures.
现在,用户可以看到在target/surefire-reports文件夹下创建了testng-failed.xml文件。
用户可以使用以下命令直接运行这个文件:
mvn test -DxmlFilePath=target/surefire-reports/testng-failed.xml
输出
[INFO] -------------------------------------------------------
[INFO] T E S T S
[INFO] -------------------------------------------------------
[INFO] Running TestSuite
Testcase 2 - skip exception example
[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 1.095 s <<< FAILURE! - in TestSuite
[ERROR] NewTestngClass.testcase2 Time elapsed: 0.017 s <<< FAILURE!
java.lang.AssertionError
at NewTestngClass.testcase2(NewTestngClass.java:16)
[INFO]
[INFO] Results:
[INFO]
[ERROR] Failures:
[ERROR] NewTestngClass.testcase2:16
[INFO]
[ERROR] Tests run: 1, Failures: 1, Errors: 0, Skipped: 0
[INFO]
[ERROR] There are test failures.