• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng;
2 
3 /**
4  * Listener interface for events related to configuration methods.
5  */
6 public interface IConfigurationListener extends ITestNGListener {
7 
8   /**
9    * Invoked whenever a configuration method succeeded.
10    */
onConfigurationSuccess(ITestResult itr)11   void onConfigurationSuccess(ITestResult itr);
12 
13   /**
14    * Invoked whenever a configuration method failed.
15    */
onConfigurationFailure(ITestResult itr)16   void onConfigurationFailure(ITestResult itr);
17 
18   /**
19    * Invoked whenever a configuration method was skipped.
20    */
onConfigurationSkip(ITestResult itr)21   void onConfigurationSkip(ITestResult itr);
22 }
23