Home
last modified time | relevance | path

Searched refs:SkipException (Results 1 – 15 of 15) sorted by relevance

/external/testng/src/test/java/test/skipex/
DTestSkippedExceptionTest.java3 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()
DSkipAndExpectedSampleTest.java3 import org.testng.SkipException;
9 throw new SkipException("test"); in a2()
DConfigurationSkippedExceptionTest.java3 import org.testng.SkipException;
14 throw new SkipException("some skip message"); in configurationLevelSkipException()
/external/testng/src/test/java/test/
DCountSampleTest.java4 import org.testng.SkipException;
18 public void testInvokedAndSkipped() throws SkipException { in testInvokedAndSkipped()
20 throw new SkipException("This test is skipped after invocation"); in testInvokedAndSkipped()
/external/testng/src/main/java/org/testng/
DSkipException.java12 public class SkipException extends RuntimeException { class
17 public SkipException(String skipMessage) { in SkipException() method in SkipException
21 public SkipException(String skipMessage, Throwable cause) { in SkipException() method in SkipException
DTimeBombSkipException.java22 public class TimeBombSkipException extends SkipException {
/external/autotest/tko/parsers/test/
Dunittest_hotfix.py10 class SkipException(Exception): class
74 except SkipException:
95 raise SkipException(msg)
101 raise SkipException(msg)
/external/testng/src/test/java/test/failedreporter/
DFailedReporterSampleTest.java3 import org.testng.SkipException;
14 throw new SkipException("Skipped"); in f1()
/external/testng/src/test/java/test/configurationfailurepolicy/
DClassWithSkippingBeforeMethod.java3 import org.testng.SkipException;
15 throw new SkipException("skipping"); in beforeMethod()
/external/testng/src/test/java/test/inject/
DInjectAfterMethodWithTestResultSampleTest.java4 import org.testng.SkipException;
25 throw new SkipException("Skipped"); in skip()
DInjectBeforeAndAfterMethodsWithTestResultSampleTest.java5 import org.testng.SkipException;
29 throw new SkipException("Skipped"); in skip()
/external/kotlinx.coroutines/reactive/kotlinx-coroutines-reactive/test/
DReactiveStreamTckTest.kt41 throw SkipException("Skipped") in optional_spec105_emptyStreamMustTerminateBySignallingOnComplete()
/external/testng/src/main/java/org/testng/remote/strprotocol/
DTestResultMessage.java9 import org.testng.SkipException;
97 && (throwable != null && SkipException.class.isAssignableFrom(throwable.getClass()))) { in TestResultMessage()
/external/testng/src/main/java/org/testng/internal/
DInvoker.java28 import org.testng.SkipException;
1409 return SkipException.class.isAssignableFrom(ite.getClass()) && ((SkipException) ite).isSkip(); in isSkipExceptionAndSkip()
/external/testng/
DCHANGES.txt664 Fixed: TestNG-214: SkipException and TimeBombSkipException should accept nested exceptions
697 Added: SkipException/TimeBombedSkipException for manual skipping