Searched refs:SkipException (Results 1 – 15 of 15) sorted by relevance
3 import org.testng.SkipException;14 throw new SkipException("genericSkipException is skipped for now"); in genericSkipException()17 @Test(expectedExceptions = SkipException.class)19 throw new SkipException("genericExpectedSkipException should not be skipped"); in genericExpectedSkipException()
3 import org.testng.SkipException;9 throw new SkipException("test"); in a2()
3 import org.testng.SkipException;14 throw new SkipException("some skip message"); in configurationLevelSkipException()
4 import org.testng.SkipException;18 public void testInvokedAndSkipped() throws SkipException { in testInvokedAndSkipped()20 throw new SkipException("This test is skipped after invocation"); in testInvokedAndSkipped()
12 public class SkipException extends RuntimeException { class17 public SkipException(String skipMessage) { in SkipException() method in SkipException21 public SkipException(String skipMessage, Throwable cause) { in SkipException() method in SkipException
22 public class TimeBombSkipException extends SkipException {
10 class SkipException(Exception): class74 except SkipException:95 raise SkipException(msg)101 raise SkipException(msg)
3 import org.testng.SkipException;14 throw new SkipException("Skipped"); in f1()
3 import org.testng.SkipException;15 throw new SkipException("skipping"); in beforeMethod()
4 import org.testng.SkipException;25 throw new SkipException("Skipped"); in skip()
5 import org.testng.SkipException;29 throw new SkipException("Skipped"); in skip()
41 throw SkipException("Skipped") in optional_spec105_emptyStreamMustTerminateBySignallingOnComplete()
9 import org.testng.SkipException;97 && (throwable != null && SkipException.class.isAssignableFrom(throwable.getClass()))) { in TestResultMessage()
28 import org.testng.SkipException;1409 return SkipException.class.isAssignableFrom(ite.getClass()) && ((SkipException) ite).isSkip(); in isSkipExceptionAndSkip()
664 Fixed: TestNG-214: SkipException and TimeBombSkipException should accept nested exceptions697 Added: SkipException/TimeBombedSkipException for manual skipping