Home
last modified time | relevance | path

Searched refs:ExpectedExceptions (Results 1 – 10 of 10) sorted by relevance

/external/testng/src/test/java/test/expectedexceptions/
DSampleExceptions.java3 import org.testng.annotations.ExpectedExceptions;
14 @ExpectedExceptions({ NumberFormatException.class} )
20 @ExpectedExceptions({ NumberFormatException.class} )
26 @ExpectedExceptions({ NumberFormatException.class} )
31 @ExpectedExceptions(RuntimeException.class)
DWrappedExpectedExceptionTest.java4 import org.testng.annotations.ExpectedExceptions;
9 @ExpectedExceptions({ IllegalStateException.class })
/external/testng/src/test/java/test/sample/
DSample1.java8 import org.testng.annotations.ExpectedExceptions;
51 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})
57 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})
/external/testng/src/test/java/test/mannotation/
DMTest1.java15 import org.testng.annotations.ExpectedExceptions;
61 @ExpectedExceptions({MTest1.class, MTest2.class })
/external/testng/src/test/java/test/dependent/
DDependentTest.java5 import org.testng.annotations.ExpectedExceptions;
52 @ExpectedExceptions({ org.testng.TestNGException.class })
/external/testng/src/main/java/org/testng/annotations/
DExpectedExceptions.java16 public @interface ExpectedExceptions { annotation
/external/testng/src/main/java/org/testng/internal/annotations/
DJDK15AnnotationFinder.java25 import org.testng.annotations.ExpectedExceptions;
64 m_annotationMap.put(IExpectedExceptionsAnnotation.class, ExpectedExceptions.class); in JDK15AnnotationFinder()
DJDK15TagFactory.java23 import org.testng.annotations.ExpectedExceptions;
337 ExpectedExceptions c = (ExpectedExceptions ) a; in createExpectedExceptionsTag()
/external/testng/
DTODO.txt103 * Make @ExpectedExceptions fail if no exception is thrown
106 * The exception thrown when a test passes with a @ExpectedExceptions is not
DCHANGES.txt903 Added: Deprecated @ExpectedExceptions and moved it into @Test
904 Added: expectedExceptions to @Test, deprecated @ExpectedExceptions
1101 Fixed: Bug with ExpectedExceptions
1259 Fixed: ExpectedException is now called ExpectedExceptions