我正在使用 TestNG 并使用范围报告进行报告。我正在尝试添加 TestNG 侦听器以在成功和失败时执行一些操作。我创建了一个测试侦听器类并在套件文件中提到了侦听器。问题是测试未执行,控制台说测试运行=0;如果从套件 xml 文件中删除侦听器标签,它就像魅力一样。
监听类
public class TestListener implements ITestListener
{
@Override
public void onTestStart(ITestResult result)
{
// TODO Auto-generated method stub
System.out.println("OnTestStart");
}
@Override
public void onTestSuccess(ITestResult result)
{
// TODO Auto-generated method stub
Reporter.log(Status.INFO, "Passed");
}
@Override
public void onTestFailure(ITestResult result)
{
// TODO Auto-generated method stub
Reporter.log(Status.INFO, "Failed");
}
}
基础测试
public class BaseTest
{
@BeforeSuite
public void preStep(ITestContext txt)
{
System.out.println("in before suite");
Reporter.startReport(txt);
System.out.println("out");
}
@BeforeMethod(alwaysRun=true)
public void setUp()
{
System.out.println("Before Method");
Reporter.setup();
}
@AfterMethod
public void closeUp(ITestResult tr)
{
System.out.println("After Method");
}
@AfterSuite
public void postStep()
{
System.out.println("After Suite");
}
}
测试班
public class TestScripts extends BaseTest
{
@Test
@Parameters("Browser")
public void loginScenario(String browser)
{
LoginPageSteps lp = new LoginPageSteps(browser);
lp.loginScenario();
}
@Test
@Parameters("Browser")
public void a(String browser)
{
Reporter.log(Status.PASS, "A Passed");
}
@Test
@Parameters("Browser")
public void b(String browser)
{
Reporter.log(Status.ERROR, "B Failed");
}
@Test
@Parameters("Browser")
public void c(String browser)
{
Reporter.log(Status.ERROR, "C Failed");
}
}
套件文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite thread-count="10" name="Default Suite" parallel="tests">
<listeners>
<listener class-name="testng.framework.utilities.TestListener"/>
</listeners>
<test thread-count="10" name="GUI" parallel="tests">
<classes>
<class name="testng.alltest.TestScripts">
<parameter name="Browser" value="Chrome"/>
<methods>
<include name="a"/>
<include name="b"/>
<include name="c"/>
<include name="loginScenario"/>
</methods>
</class>
</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>ORORA</groupId>
<artifactId>UIAutomation</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>UIAutomation</name>
<url>http://maven.apache.org</url>
<developers>
<developer>
<id>Deepak Mahalingam</id>
<name>Deepak</name>
<email>mahalingamd@hcl.com</email>
<organization>HCL</organization>
<roles>
<role>Automation Tester</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M3</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>TestSuite\TestDesktop.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<mainClass>testng.framework.utilities.BuildTestXML</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.14.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.14.3</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>4.0.9</version>
</dependency>
<!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured -->
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>3.3.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.json/json -->
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20180813</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
</dependency>
</dependencies>
</project>