HomeSort by relevance Sort by last modified time
    Searched defs:TestException (Results 1 - 24 of 24) sorted by null

  /art/test/111-unresolvable-exception/src/
TestException.java 17 public class TestException extends Exception {
  /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/
googletest-death-test_ex_test.cc 60 class TestException : public std::exception {
67 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
70 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw 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/chromium-trace/catapult/devil/devil/utils/
reraiser_thread_unittest.py 14 class TestException(Exception):
36 raise TestException
41 with self.assertRaises(TestException):
77 raise TestException
81 with self.assertRaises(TestException):
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),
  /external/deqp/framework/common/
tcuDefs.cpp 76 TestException::TestException (const char* message, const char* expr, const char* file, int line, qpTestResult result)
82 TestException::TestException (const std::string& message, qpTestResult result)
89 : TestException(message, expr, file, line, QP_TEST_RESULT_FAIL)
93 : TestException(message.c_str(), expr, file, line, QP_TEST_RESULT_FAIL)
98 : TestException(message, QP_TEST_RESULT_FAIL)
103 : TestException(message, expr, file, line, QP_TEST_RESULT_INTERNAL_ERROR)
108 : TestException(message, QP_TEST_RESULT_INTERNAL_ERROR)
113 : TestException(message, expr, file, line, QP_TEST_RESULT_RESOURCE_ERROR
    [all...]
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/EventModifiers/
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.
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.
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/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();
  /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...]
  /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/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");
163 // throw new TestException("throwCatchBaseTestExceptionTwice");
181 // throw new TestException("throwCatchTestExceptionTwice");
182 // } catch (TestException t) {
188 // } catch (TestException t)
    [all...]
  /external/python/cpython3/Lib/test/test_email/
test_policy.py 245 class TestException(Exception):
255 raise TestException("test")
260 with self.assertRaisesRegex(TestException, "^test$"):
265 with self.assertRaisesRegex(TestException, "^test$"):
271 with self.assertRaisesRegex(TestException, "^test$"):
276 with self.assertRaisesRegex(TestException, "^test$"):
283 with self.assertRaisesRegex(TestException, "^test$"):
288 with self.assertRaisesRegex(TestException, "^test$"):
  /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);
  /art/test/1932-monitor-events-misc/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/1933-monitor-current-contended/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/1934-jvmti-signal-thread/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);
  /external/libcxx/test/support/
controlled_allocators.hpp 57 struct TestException {};
  /external/robolectric-shadows/shadowapi/src/test/java/org/robolectric/util/
ReflectionHelpersTest.java 176 assertThat(e.getCause()).isInstanceOf(TestException.class);
215 assertThat(e.getCause()).isInstanceOf(TestException.class);
253 assertThat(e.getCause()).isInstanceOf(TestException.class);
269 private static class TestException extends Exception {
321 throw new TestException();
333 throw new TestException();
351 throw new 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...]

Completed in 2350 milliseconds