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

org.testng.IConfigurable Maven / Gradle / Ivy

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

/**
 * If a test class implements this interface, its run() method will be invoked instead of each
 * configuration method found. The invocation of the configuration method will then be performed
 * upon invocation of the callBack() method of the IConfigureCallBack parameter.
 *
 * @author cbeust Sep 07, 2010
 */
public interface IConfigurable extends ITestNGListener {

  void run(IConfigureCallBack callBack, ITestResult testResult);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy