17 lines
444 B
Java
17 lines
444 B
Java
package org.testng.junit;
|
|
|
|
import java.util.List;
|
|
import org.testng.IInvokedMethodListener;
|
|
import org.testng.ITestNGMethod;
|
|
import org.testng.internal.ITestResultNotifier;
|
|
|
|
public interface IJUnitTestRunner {
|
|
List<ITestNGMethod> getTestMethods();
|
|
|
|
void run(Class cls, String... strArr);
|
|
|
|
void setInvokedMethodListeners(List<IInvokedMethodListener> list);
|
|
|
|
void setTestResultNotifier(ITestResultNotifier iTestResultNotifier);
|
|
}
|