package org.testng;

Listener for test suites.
Author:Cedric Beust, Aug 6, 2004
/** * Listener for test suites. * * @author Cedric Beust, Aug 6, 2004 */
public interface ISuiteListener extends ITestNGListener {
This method is invoked before the SuiteRunner starts.
Params:
  • suite – The suite
/** * This method is invoked before the SuiteRunner starts. * * @param suite The suite */
default void onStart(ISuite suite) { // not implemented }
This method is invoked after the SuiteRunner has run all the tests in the suite.
Params:
  • suite – The suite
/** * This method is invoked after the SuiteRunner has run all the tests in the suite. * * @param suite The suite */
default void onFinish(ISuite suite) { // not implemented } }