Home
last modified time | relevance | path

Searched refs:IExpectedExceptionsAnnotation (Results 1 – 9 of 9) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DRegexpExpectedExceptionsHolder.java5 import org.testng.annotations.IExpectedExceptionsAnnotation;
50 IExpectedExceptionsAnnotation expectedExceptions = in getRegExp()
51 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class); in getRegExp()
DExpectedExceptionsHolder.java6 import org.testng.annotations.IExpectedExceptionsAnnotation;
27 IExpectedExceptionsAnnotation expectedExceptions = in findExpectedClasses()
28 finder.findAnnotation(method, IExpectedExceptionsAnnotation.class); in findExpectedClasses()
DMethodHelper.java15 import org.testng.annotations.IExpectedExceptionsAnnotation;
/external/testng/src/main/java/org/testng/internal/annotations/
DExpectedExceptionsAnnotation.java3 import org.testng.annotations.IExpectedExceptionsAnnotation;
13 implements IExpectedExceptionsAnnotation
DJDK15AnnotationFinder.java30 import org.testng.annotations.IExpectedExceptionsAnnotation;
64 m_annotationMap.put(IExpectedExceptionsAnnotation.class, ExpectedExceptions.class); in JDK15AnnotationFinder()
DAnnotationHelper.java13 import org.testng.annotations.IExpectedExceptionsAnnotation;
171 IDataProviderAnnotation.class, IExpectedExceptionsAnnotation.class,
DJDK15TagFactory.java28 import org.testng.annotations.IExpectedExceptionsAnnotation;
60 else if (annotationClass == IExpectedExceptionsAnnotation.class) { in createTag()
/external/testng/src/test/java/test/mannotation/
DMAnnotationSampleTest.java7 import org.testng.annotations.IExpectedExceptionsAnnotation;
195 IExpectedExceptionsAnnotation exceptions= in verifyExpectedExceptions()
196 …(IExpectedExceptionsAnnotation) m_finder.findAnnotation(method, IExpectedExceptionsAnnotation.clas… in verifyExpectedExceptions()
/external/testng/src/main/java/org/testng/annotations/
DIExpectedExceptionsAnnotation.java8 public interface IExpectedExceptionsAnnotation extends IAnnotation { interface