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

org.testng.IExecutionListener Maven / Gradle / Ivy

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

/**
 * A listener used to monitor when a TestNG run starts and ends.
 *
 * @author Cedric Beust 
 */
public interface IExecutionListener extends ITestNGListener {

  /**
   * Invoked before the TestNG run starts.
   */
  void onExecutionStart();

  /**
   * Invoked once all the suites have been run.
   */
  void onExecutionFinish();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy