HomeSort by relevance Sort by last modified time
    Searched refs:SkipException (Results 1 - 14 of 14) sorted by null

  /external/testng/src/test/java/test/skipex/
TestSkippedExceptionTest.java 3 import org.testng.SkipException;
14 throw new SkipException("genericSkipException is skipped for now");
17 @Test(expectedExceptions = SkipException.class)
19 throw new SkipException("genericExpectedSkipException should not be skipped");
ConfigurationSkippedExceptionTest.java 3 import org.testng.SkipException;
14 throw new SkipException("some skip message");
SkipAndExpectedSampleTest.java 3 import org.testng.SkipException;
9 throw new SkipException("test");
  /external/testng/src/test/java/test/failedreporter/
FailedReporterSampleTest.java 3 import org.testng.SkipException;
14 throw new SkipException("Skipped");
  /external/testng/src/test/java/test/
CountSampleTest.java 4 import org.testng.SkipException;
18 public void testInvokedAndSkipped() throws SkipException {
20 throw new SkipException("This test is skipped after invocation");
  /external/testng/src/test/java/test/configurationfailurepolicy/
ClassWithSkippingBeforeMethod.java 3 import org.testng.SkipException;
15 throw new SkipException("skipping");
  /external/testng/src/main/java/org/testng/
SkipException.java 12 public class SkipException extends RuntimeException {
17 public SkipException(String skipMessage) {
21 public SkipException(String skipMessage, Throwable cause) {
TimeBombSkipException.java 12 * A {@link SkipException} extension that transforms a skipped method
22 public class TimeBombSkipException extends SkipException {
  /external/testng/src/test/java/test/inject/
InjectAfterMethodWithTestResultSampleTest.java 4 import org.testng.SkipException;
25 throw new SkipException("Skipped");
InjectBeforeAndAfterMethodsWithTestResultSampleTest.java 5 import org.testng.SkipException;
29 throw new SkipException("Skipped");
  /external/autotest/tko/parsers/test/
unittest_hotfix.py 10 class SkipException(Exception):
74 except SkipException:
95 raise SkipException(msg)
101 raise SkipException(msg)
  /external/testng/src/main/java/org/testng/remote/strprotocol/
TestResultMessage.java 9 import org.testng.SkipException;
97 && (throwable != null && SkipException.class.isAssignableFrom(throwable.getClass()))) {
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 28 import org.testng.SkipException;
    [all...]
  /prebuilts/tools/common/m2/repository/org/testng/testng/6.9.10/
testng-6.9.10.jar 

Completed in 180 milliseconds