Package org.testng

Interface ISuiteListener

  • All Superinterfaces:
    ITestNGListener

    public interface ISuiteListener
    extends ITestNGListener
    Listener for test suites.
    Author:
    Cedric Beust, Aug 6, 2004
    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void onFinish​(ISuite suite)
      This method is invoked after the SuiteRunner has run all the tests in the suite.
      default void onStart​(ISuite suite)
      This method is invoked before the SuiteRunner starts.
    • Method Detail

      • onStart

        default void onStart​(ISuite suite)
        This method is invoked before the SuiteRunner starts.
        Parameters:
        suite - The suite
      • onFinish

        default void onFinish​(ISuite suite)
        This method is invoked after the SuiteRunner has run all the tests in the suite.
        Parameters:
        suite - The suite