HomeSort by relevance Sort by last modified time
    Searched refs:TestException (Results 1 - 25 of 330) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/111-unresolvable-exception/src/
TestException.java 17 public class TestException extends Exception {
Main.java 29 throwsTestException(); // TestException is checked, so we need something potentially
33 } catch (TestException e) { // This handler will have an unresolvable class.
40 private static native void throwsTestException() throws TestException;
  /external/testng/src/main/java/org/testng/
TestException.java 10 public class TestException extends TestNGException {
13 public TestException(String s) {
17 public TestException(Throwable t) {
21 public TestException(String message, Throwable t) {
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
EventWithExceptionDebuggee.java 32 static final class TestException extends Exception {
38 } catch (TestException e) {
46 public void syncAndThrow() throws TestException {
50 public void syncAndThrowImpl() throws TestException {
52 throw new TestException();
64 new TestException();
  /external/google-breakpad/src/testing/gtest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/googletest/googletest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/v8/testing/gtest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/test/
gtest-death-test_ex_test.cc 61 class TestException : public std::exception {
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/EventModifiers/
CountModifierDebuggee.java 36 static class TestException extends Exception {
44 public void throwException() throws TestException {
46 throw new TestException();
59 } catch (TestException e) {
74 new TestException(); // force class loading.
InstanceOnlyModifierDebuggee.java 28 static class TestException extends Exception {
42 } catch (TestException e) {
43 System.out.println("Catch TestException");
53 private void throwException() throws TestException {
56 throw new TestException();
65 new TestException(); // force class loading.
ThreadOnlyModifierDebuggee.java 28 static class TestException extends Exception {
62 } catch (TestException e) {
67 void throwException() throws TestException {
70 throw new TestException();
82 new TestException(); // force class loading.
  /external/testng/src/main/java/org/testng/internal/
ExpectedExceptionsHolder.java 5 import org.testng.TestException;
53 // TestException is the wrapper exception that TestNG will be throwing when an exception was
55 if (ite.getClass() == TestException.class) {
76 return new TestException("Expected exception of " +
80 return new TestException(holder.getWrongExceptionMessage(ite), ite);
84 public TestException noException(ITestNGMethod testMethod) {
88 return new TestException("Method " + testMethod + " should have thrown an exception of "
  /art/test/1927-exception-event/src/art/
Test1927.java 74 public static class TestException extends Error {
75 public TestException(String s) { super(s); }
76 public TestException() { super("from java"); }
103 throw new TestException();
110 throw new TestException();
111 } catch (TestException e) {
122 } catch (TestException e) {
130 } catch (TestException e) {
146 } catch (TestException e) {
154 } catch (TestException e)
    [all...]
  /external/deqp/framework/common/
tcuDefs.hpp 62 class TestException : public Exception
65 TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result);
66 TestException (const std::string& message, qpTestResult result);
67 virtual ~TestException (void) throw() {}
77 class TestError : public TestException
87 class InternalError : public TestException
96 class ResourceError : public TestException
107 class NotSupportedError : public TestException
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
StackTrace002Debuggee.java 113 private static class TestException extends Exception {
331 } catch (TestException expected) {
335 } catch (TestException expected) {
352 } catch (TestException expected) {
356 } catch (TestException expected) {
360 public void runBreakpointIntConstantWithExceptionInCallerImpl() throws TestException {
370 } catch (TestException expected) {
374 public void breakpointIntConstantWithException(int param) throws TestException {
377 throw new TestException();
385 } catch (TestException expected)
    [all...]
  /art/test/1929-exception-catch-exception/src/art/
Test1929.java 79 public static class TestException extends BaseTestException {
80 public TestException(String e) { super(e); }
81 public TestException(String e, Throwable t) { super(e, t); }
84 public static class TestExceptionNoRethrow extends TestException {
130 throw new TestException("doThrow");
139 throw new TestException("throwCatchBaseTestException");
160 throw new TestException("throwCatchBaseTestExceptionTwice");
178 throw new TestException("throwCatchTestExceptionTwice");
179 } catch (TestException t) {
185 } catch (TestException t)
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry_unittest.py 19 class TestException(Exception):
25 raise TestException
50 TestException, timeout_retry.Run, lambda: _CountTries(tries),
57 TestException, timeout_retry.Run, lambda: _CountTries(tries),
reraiser_thread_unittest.py 14 class TestException(Exception):
36 raise TestException
41 with self.assertRaises(TestException):
77 raise TestException
81 with self.assertRaises(TestException):
  /external/libmojo/third_party/catapult/devil/devil/utils/
timeout_retry_unittest.py 19 class TestException(Exception):
25 raise TestException
50 TestException, timeout_retry.Run, lambda: _CountTries(tries),
57 TestException, timeout_retry.Run, lambda: _CountTries(tries),
reraiser_thread_unittest.py 14 class TestException(Exception):
36 raise TestException
41 with self.assertRaises(TestException):
77 raise TestException
81 with self.assertRaises(TestException):
  /art/test/1928-exception-event-exception/src/art/
Test1928.java 75 public static class TestException extends BaseTestException {
76 public TestException(String e) { super(e); }
77 public TestException(String e, Throwable t) { super(e, t); }
80 public static class TestExceptionNoRethrow extends TestException {
110 throw new TestException("doThrow");
119 throw new TestException("throwCatchBaseTestException");
134 throw new TestException("throwCatchTestException");
135 } catch (TestException t) {
149 throw new TestException("throwCatchTestExceptionNoRethrow");
166 TestException.class
    [all...]
  /art/test/111-unresolvable-exception/
build 22 rm classes/TestException.class
  /art/test/1930-monitor-info/src/art/
Monitors.java 113 public static class TestException extends Error {
114 public TestException() { super(); }
115 public TestException(String s) { super(s); }
116 public TestException(String s, Throwable c) { super(s, c); }
152 throw new TestException("Exception thrown by other thread!", exe);
167 throw new TestException("We don't have any runner holding " + lock);
228 throw new TestException("Got an error while performing action " + cur_action, e);
  /art/test/1931-monitor-events/src/art/
Monitors.java 113 public static class TestException extends Error {
114 public TestException() { super(); }
115 public TestException(String s) { super(s); }
116 public TestException(String s, Throwable c) { super(s, c); }
152 throw new TestException("Exception thrown by other thread!", exe);
167 throw new TestException("We don't have any runner holding " + lock);
228 throw new TestException("Got an error while performing action " + cur_action, e);

Completed in 491 milliseconds

1 2 3 4 5 6 7 8 91011>>