8 lines
150 B
Java
8 lines
150 B
Java
package org.testng;
|
|
|
|
public interface IConfigureCallBack {
|
|
Object[] getParameters();
|
|
|
|
void runConfigurationMethod(ITestResult iTestResult);
|
|
}
|