Home
last modified time | relevance | path

Searched refs:IBeforeMethod (Results 1 – 6 of 6) sorted by relevance

/external/testng/src/main/java/org/testng/internal/annotations/
DAnnotationHelper.java66 …urationAnnotation bm = (IConfigurationAnnotation) finder.findAnnotation(ctor, IBeforeMethod.class); in findConfiguration()
90 …figurationAnnotation bm = (IConfigurationAnnotation) finder.findAnnotation(m, IBeforeMethod.class); in findConfiguration()
170 IBeforeMethod.class, IAfterMethod.class,
184 IBeforeMethod.class, IAfterMethod.class
DIBeforeMethod.java3 public interface IBeforeMethod extends IBaseBeforeAfter { interface
DConfigurationAnnotation.java17 IBeforeMethod, IAfterMethod {
DJDK15TagFactory.java82 annotationClass == IBeforeMethod.class || annotationClass == IAfterMethod.class) in createTag()
223 else if (annotationClass == IBeforeMethod.class) { in maybeCreateNewConfigurationTag()
DJDK15AnnotationFinder.java78 m_annotationMap.put(IBeforeMethod.class, BeforeMethod.class); in JDK15AnnotationFinder()
/external/testng/src/main/java/org/testng/internal/
DConfigurationMethod.java24 import org.testng.internal.annotations.IBeforeMethod;
373 initGroups(IBeforeMethod.class); in init()
445 IAnnotation before = m_annotationFinder.findAnnotation(getMethod(), IBeforeMethod.class); in isFirstTimeOnly()