11 lines
298 B
Java
11 lines
298 B
Java
package org.testng;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
public interface IMethodSelector extends Serializable {
|
|
boolean includeMethod(IMethodSelectorContext iMethodSelectorContext, ITestNGMethod iTestNGMethod, boolean z);
|
|
|
|
void setTestMethods(List<ITestNGMethod> list);
|
|
}
|