@Test не выполняется - если я добавлю прослушиватель TestNG в тестовый XML-файл, мои методы @Test не будут выполняться

Я использую TestNG и для отчетов с помощью отчета о степени. Я пытаюсь добавить слушателей TestNG для выполнения некоторых операций при успехе и при неудаче. Я создал класс Test Listener и упомянул слушателя в файле набора. Проблема: Test не выполняется, а консоль сообщает Test run = 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>[email protected]</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>

person Deepak_Mahalingam    schedule 03.10.2019    source источник
comment
вы можете опубликовать свои зависимости pom?   -  person Sureshmani Kalirajan    schedule 04.10.2019
comment
@Sureshmani, пожалуйста, найдите файл pom.xml   -  person Deepak_Mahalingam    schedule 08.10.2019
comment
@Deepak_Mahalingam: предоставили ли вы полный код класса TestListener ... поскольку я вижу, что многие методы ITestListeners не реализованы в вашем классе   -  person Pritam Maske    schedule 08.10.2019
comment
@Deepak_Mahalingam: Не могли бы вы предоставить оператор импорта класса Reporter, который вы использовали в TestListener и BaseTest   -  person Pritam Maske    schedule 08.10.2019
comment
Если вы используете класс Reporter для отчетов о экстентах, его доступная только версия отчета по экстентам ниже 4. пожалуйста, проверьте зависимость класса Reporter и обновите соответственно.   -  person Sureshmani Kalirajan    schedule 08.10.2019
comment
@Deepak_Mahalingam: пробовали ли вы предоставленное решение   -  person Pritam Maske    schedule 09.10.2019
comment
@PritamMaske: да, реализовал, отлично работает   -  person Deepak_Mahalingam    schedule 09.10.2019
comment
@Deepak_Mahalingam: Не могли бы вы принять ответ, если он решил вашу проблему   -  person Pritam Maske    schedule 14.10.2019


Ответы (1)


Похоже, существует проблема с вашим классом Listener и оператором импорта класса Reporter.

Если вы используете репортер класса TestNG, то не существует такого метода, как "настройка" или запуск

Я могу запустить сценарий, изменив классы TestListener и BaseTest следующим образом:

package stackoverflow;

import org.testng.ITestContext;
import org.testng.ITestListener;
import org.testng.ITestResult;

public class TestListener implements ITestListener {

@Override
public void onTestStart(ITestResult iTestResult) {
    System.out.println("onTestStart");
}

@Override
public void onTestSuccess(ITestResult iTestResult) {
    System.out.println("onTestSuccess");
}

@Override
public void onTestFailure(ITestResult iTestResult) {
    System.out.println("onTestFailure");
}

@Override
public void onTestSkipped(ITestResult iTestResult) {
    System.out.println("onTestSkipped");
}

@Override
public void onTestFailedButWithinSuccessPercentage(ITestResult iTestResult) {
    System.out.println("onTestFailedButWithinSuccessPercentage");
}

@Override
public void onStart(ITestContext iTestContext) {
    System.out.println("onTestFailedButWithinSuccessPercentage");
}

@Override
public void onFinish(ITestContext iTestContext) {
    System.out.println("onFinish");
}
}

Мой базовый тестовый класс:

package stackoverflow;

import org.testng.ITestContext;
import org.testng.ITestResult;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeSuite;

public class BaseTest {
    @BeforeSuite
    public void preStep(ITestContext txt)
    {
        System.out.println("in before suite");
        System.out.println("out");
    }
    @BeforeMethod(alwaysRun=true)
    public void setUp()
    {
        System.out.println("Before Method");
    }
    @AfterMethod
    public void closeUp(ITestResult tr)
    {
        System.out.println("After Method");
    }
    @AfterSuite
    public void postStep()
    {
        System.out.println("After Suite");
    }
}

Мой TestNg.xml

<?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="listener.TestListener"/>
    </listeners>
    <test thread-count="10" name="GUI" parallel="tests">
        <classes>
            <class name="stackoverflow.TestScripts">
                <parameter name="Browser" value="Chrome"/>
                <methods>
                    <include name="a"/>
                    <include name="b"/>
                    <include name="c"/>
                    <include name="loginScenario"/>
                </methods>
            </class>
        </classes>
    </test>
</suite>
person Pritam Maske    schedule 08.10.2019