Searched defs:TestException (Results 1 - 7 of 7) sorted by relevance

/external/chromium/testing/gtest/test/
H A Dgtest-death-test_ex_test.cc61 class TestException : public std::exception { class in inherits:std::exception
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
/external/chromium_org/testing/gtest/test/
H A Dgtest-death-test_ex_test.cc61 class TestException : public std::exception { class in inherits:std::exception
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
/external/gtest/test/
H A Dgtest-death-test_ex_test.cc61 class TestException : public std::exception { class in inherits:std::exception
68 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
71 EXPECT_NONFATAL_FAILURE(EXPECT_DEATH(throw TestException(), ""),
/external/chromium_org/build/android/pylib/utils/
H A Dreraiser_thread_unittest.py14 class TestException(Exception): class in inherits:Exception
35 raise TestException
40 with self.assertRaises(TestException):
73 raise TestException
77 with self.assertRaises(TestException):
H A Dtimeout_retry_unittest.py13 class TestException(Exception): class in inherits:Exception
25 raise TestException
43 self.assertRaises(TestException,
/external/chromium_org/build/android/pylib/base/
H A Dtest_dispatcher_unittest.py24 class TestException(Exception): class in inherits:Exception
77 raise TestException
161 with self.assertRaises(TestException):
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java1261 private static class TestException extends Exception { class in class:FuturesTest
1262 TestException(@Nullable Throwable cause) { method in class:FuturesTest.TestException
1267 private static final Function<Exception, TestException> mapper =
1268 new Function<Exception, TestException>() {
1269 @Override public TestException apply(Exception from) {
1271 return new TestException(from.getCause());
1276 return new TestException(from);
1284 CheckedFuture<String, TestException> checked = Futures.makeChecked(
1309 } catch (TestException e) {
1316 } catch (TestException
[all...]

Completed in 391 milliseconds