20 lines
539 B
Java
20 lines
539 B
Java
package org.testng.internal.annotations;
|
|
|
|
import java.lang.reflect.Constructor;
|
|
import java.lang.reflect.Method;
|
|
import org.testng.annotations.IAnnotation;
|
|
|
|
public interface IAnnotationFinder {
|
|
IAnnotation findAnnotation(Class cls, Class cls2);
|
|
|
|
IAnnotation findAnnotation(Constructor constructor, Class cls);
|
|
|
|
IAnnotation findAnnotation(Method method, Class cls);
|
|
|
|
String[] findOptionalValues(Constructor constructor);
|
|
|
|
String[] findOptionalValues(Method method);
|
|
|
|
boolean hasTestInstance(Method method, int i);
|
|
}
|