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

org.testng.ISuiteListener Maven / Gradle / Ivy

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

/**
 * Listener for test suites.
 *
 * @author Cedric Beust, Aug 6, 2004
 */
public interface ISuiteListener extends ITestNGListener {
  /** This method is invoked before the SuiteRunner starts. */
  default void onStart(ISuite suite) {
    // not implemented
  }

  /** This method is invoked after the SuiteRunner has run all the test suites. */
  default void onFinish(ISuite suite) {
    // not implemented
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy