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.
   */
  public void onStart(ISuite suite);

  /**
   * This method is invoked after the SuiteRunner has run all
   * the test suites.
   */
  public void onFinish(ISuite suite);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy