TestNG 如何在Maven的pom.xml中调用testng.xml文件

TestNG 如何在Maven的pom.xml中调用testng.xml文件

Maven是一个项目管理和理解工具,提供了一个完整的构建生命周期框架。用户可以在几乎没有时间的情况下自动化项目的构建基础设施,因为Maven使用了标准的目录布局和默认的构建生命周期。

对于多个环境的情况,Maven可以在很短的时间内按照标准设置工作方式。由于大多数项目设置都是简单和可重用的,因此在创建报告、检查、构建和测试自动化设置时,Maven使生活变得轻松。

Maven提供了开发人员管理以下内容的方式:

  • 构建

  • 文档

  • 报告

  • 依赖

  • 版本控制系统

  • 发布

  • 分发

  • 邮件列表

总结一下,Maven简化和标准化了项目构建过程。它无缝处理编译、分发、文档、团队协作和其他任务。Maven增加了可重用性,并处理了大部分与构建相关的任务。

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

用户可以从testng.xml或pom.xml运行测试。要从pom.xml运行测试,用户需要在pom.xml中提及testng.xml的路径,并需要maven-surefire-plugin来执行。

在本文中,我们将看到在pom.xml中提及testng.xml的详细信息和格式。

解决这个问题的方法/算法

  • 步骤1:创建一个TestNG类 – NewTestngClass

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

  • 步骤3:现在按照以下方式创建testNG.xml。

  • 步骤4:在pom.xml中添加testng.xml的路径,如下所示。

<configuration>
       <suiteXmlFiles>
             <suiteXmlFile>Path of testng.xml</suiteXmlFile>
        </suiteXmlFiles>
  </configuration>

在配置部分中,提及了testng的路径。要记住两件事,首先是这个配置应该与maven-surefire-plugin一起保留,第二个是永远不要忘记添加testng的依赖。

  • 步骤5:现在,在IDE中运行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");
    }

}

testng.xml

这是一个用于组织和运行 TestNG 测试用例的配置文件。

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

<?xml version = "1.0" encoding = "UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name = "Suite1" parallel = "none">
    <test name = "test1" preserve-order = "true">
        <classes>
        <class name=”NewTestngClass”/>
       </classes>
    </test>
</suite>

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>src/main/java/testng.xml</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>

输出

4.0.0

    com.sample
    TestNGProjectct
    1.0-SNAPSHOT

    org.apache.maven.plugins
    maven-surefire-plugin
    3.0.0-M5

    src/main/java/testng.xml

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程