我有一个范围报告侦听器,并且正在从 testng.xml 调用它,它工作得非常好。当我从我的 pom.xml 调用侦听器时,它不能正常工作。
我在这里有两个问题:
- 我可以在不将侦听器添加到 pom 文件的情况下从 testNG.xml 调用侦听器吗?
- 如何从 testNG.xml 和 pom.xml 获得相同的输出?
如果需要,我也可以在这里附加我的项目。有人可以建议这里可能出了什么问题。
我的 testng.xml 文件是这样的:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<suite name="Suite" verbose="2" parallel="tests" thread-count="2">
<listeners>
<listener class-name="ExtentReporterNG.ExtentTestNGIReporterListener"/>
</listeners>
<test name="Regression1">
<classes>
<class name="org.Sample1.AppTest"/>
<class name="org.Sample2.AppTest"/>
</classes>
</test>
</suite>
我的 pom.xml 是这样的:
<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.test.sample</groupId>
<artifactId>SampleProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>SampleProject</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.10</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>3.0.7</version>
</dependency>
<dependency>
<groupId>sample</groupId>
<artifactId>com.sample</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>C:\\Users\\pchand\\Desktop\\ExtentReport-0.0.1-SNAPSHOT.jar</systemPath>
</dependency>
</dependencies>
<modules>
<module>Sample1</module>
<module>Sample2</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<testFailureIgnore>true</testFailureIgnore>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
<properties>
<!-- <property>
<name>usedefaultlisteners</name>
<value>false</value> disabling default listeners is optional
</property> -->
<property>
<name>listener</name>
<value>ExtentReporterNG.ExtentTestNGIReporterListener</value>
</property>
</properties>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>