• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.testng;
2 
3 /**
4  * If a test class implements this interface, its run() method
5  * will be invoked instead of each configuration method found.  The invocation of
6  * the configuration method will then be performed upon invocation of the callBack()
7  * method of the IConfigureCallBack parameter.
8  *
9  * @author cbeust
10  * Sep 07, 2010
11  */
12 public interface IConfigurable extends ITestNGListener {
run(IConfigureCallBack callBack, ITestResult testResult)13   public void run(IConfigureCallBack callBack, ITestResult testResult);
14 }
15