如何使用批处理文件运行Maven项目的testng.xml文件?


TestNG是一个测试框架,可以使用Maven作为构建工具。它有助于在一个pom.xml文件中维护依赖项及其版本。

Maven提供了使用surefire插件运行测试的灵活性。如果用户有多个testng.xml文件(请注意,一个testng文件只包含一个测试套件),他/她可以根据需要运行特定的套件。Maven允许将suiteXMLFiles定义为变量,并使用命令行在运行时传递变量的值。同时,用户可以使用此命令创建批处理文件并将其作为批处理文件运行。

在本文中,我们将说明如何使用批处理文件和maven运行特定的TestNG套件。

解决此问题的步骤/算法

  • 步骤1:创建TestNG类 - NewTestngClass

  • 步骤2:在类中编写2个@Test方法。

  • 步骤3:现在创建如下所示的testng.xml。

  • 步骤4:在pom.xml中添加suiteXMLFiles标签,并为testng.xml文件路径指定一个变量名${xmlFilePath},如程序部分所示。

  • 步骤5:现在,使用命令行创建一个批处理文件,例如mvn clean test -DxmlFilePath=<testng.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");
	   
    }
}  

pom.xml

这是一个Maven配置文件,用于组织依赖项、插件和运行TestNG测试用例。

当只需要执行有限的测试而不是完整的套件时,它非常方便。

<?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>

批处理文件

编写以下命令并另存为.bat文件

set projectLocation=C:\locationOfYourProject\locationOfYourTestNGXmlFile
cd %projectLocation%
mvn clean test -DxmlFilePath=src/main/java/testng.xml

输出

[INFO] Running TestSuite
...
... TestNG 7.3.0 by Cédric Beust ([email protected])
...

in test case 1 of NewTestngClass 
in test case 2 of NewTestngClass 
[INFO] Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 1.314 s 

更新于:2023年8月18日

2K+ 浏览量

开启你的职业生涯

完成课程获得认证

开始学习
广告