All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.reporters.ExitCodeListener Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.reporters;

import org.testng.TestNG;

/**
 * A very simple ITestListener used by the TestNG runner to
 * find out the exit code.
 *
 * @author Alexandru Popescu
 */
public class ExitCodeListener extends TestNG.ExitCodeListener {
  public ExitCodeListener() {
    super();
  }

  public ExitCodeListener(TestNG runner) {
    super(runner);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy