blob: 6a28d61481d30ff9439d3625564d50259e50efc9 [file] [log] [blame]
package test.methodselectors;
import java.util.List;
import org.testng.IMethodSelector;
import org.testng.ITestNGMethod;
public class Test2MethodSelector implements IMethodSelector {
public boolean includeMethod(ITestNGMethod method, boolean isTestMethod) {
for (String group : method.getGroups()) {
if (group.equals("test2")) {
return true;
}
}
return false;
}
public void setTestMethods(List<ITestNGMethod> testMethods) {
// TODO Auto-generated method stub
}
}