link start!
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
package org.testng.junit;
|
||||
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
/* compiled from: JUnitMethodFinder */
|
||||
interface INameFilter {
|
||||
boolean accept(Method method);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package org.testng.junit;
|
||||
|
||||
interface JUnitTestRecognizer {
|
||||
boolean isTest(Class cls);
|
||||
}
|
||||
Reference in New Issue
Block a user