Searched refs:ExpectedExceptions (Results 1 – 10 of 10) sorted by relevance
3 import org.testng.annotations.ExpectedExceptions;14 @ExpectedExceptions({ NumberFormatException.class} )20 @ExpectedExceptions({ NumberFormatException.class} )26 @ExpectedExceptions({ NumberFormatException.class} )31 @ExpectedExceptions(RuntimeException.class)
4 import org.testng.annotations.ExpectedExceptions;9 @ExpectedExceptions({ IllegalStateException.class })
8 import org.testng.annotations.ExpectedExceptions;51 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})57 @ExpectedExceptions( {NumberFormatException.class, ArithmeticException.class})
15 import org.testng.annotations.ExpectedExceptions;61 @ExpectedExceptions({MTest1.class, MTest2.class })
5 import org.testng.annotations.ExpectedExceptions;52 @ExpectedExceptions({ org.testng.TestNGException.class })
16 public @interface ExpectedExceptions { annotation
25 import org.testng.annotations.ExpectedExceptions;64 m_annotationMap.put(IExpectedExceptionsAnnotation.class, ExpectedExceptions.class); in JDK15AnnotationFinder()
23 import org.testng.annotations.ExpectedExceptions;337 ExpectedExceptions c = (ExpectedExceptions ) a; in createExpectedExceptionsTag()
103 * Make @ExpectedExceptions fail if no exception is thrown106 * The exception thrown when a test passes with a @ExpectedExceptions is not
903 Added: Deprecated @ExpectedExceptions and moved it into @Test904 Added: expectedExceptions to @Test, deprecated @ExpectedExceptions1101 Fixed: Bug with ExpectedExceptions1259 Fixed: ExpectedException is now called ExpectedExceptions