Searched refs:MyException (Results 1 – 12 of 12) sorted by relevance
/third_party/python/Lib/unittest/test/ |
D | test_async_case.py | 6 class MyException(Exception): class 90 raise MyException() 113 except MyException: 129 raise MyException() 148 except MyException: 167 raise MyException() 183 except MyException: 206 raise MyException('some error') 210 raise MyException('other error') 224 except MyException: [all …]
|
D | test_case.py | 85 def runTest(self): raise MyException() 106 def runTest(self): raise MyException() 117 def runTest(self): raise MyException() 1935 class MyException(Exception): class 1939 MyException.ninstance += 1 1943 MyException.ninstance -= 1 1947 raise MyException() 1951 raise MyException() 1957 self.assertEqual(MyException.ninstance, 0)
|
/third_party/python/Lib/test/ |
D | test_raise.py | 123 class MyException(Exception): class 128 raise MyException 136 class MyException(Exception): class 141 raise MyException 198 class MyException(Exception): class 203 raise IndexError from MyException
|
D | test_exceptions.py | 547 class MyException(Exception): class 550 e = MyException().with_traceback(tb) 551 self.assertIsInstance(e, MyException) 588 class MyException(OSError): class 591 e = MyException() 659 class MyException(Exception): class 668 raise MyException(obj) 675 except MyException as e: 687 except MyException: 746 except MyException: [all …]
|
D | test_contextlib_async.py | 560 class MyException(Exception): class 568 exc = MyException() 585 except MyException as exc:
|
D | test_fileio.py | 560 class MyException(Exception): pass class 564 raise MyException("blocked setting name") 567 self.assertRaises(MyException, MyFileIO, fd)
|
D | test_contextlib.py | 787 class MyException(Exception): class 795 exc = MyException() 812 except MyException as exc:
|
D | test_coroutines.py | 2130 class MyException(Exception): class 2149 raise MyException 2156 except MyException:
|
D | test_descr.py | 2085 class MyException(Exception): class 2089 raise MyException 2113 self.assertRaises(MyException, runner, X())
|
/third_party/googletest/googlemock/test/ |
D | gmock-more-actions_test.cc | 563 class MyException {}; class 566 const Action<double(char ch)> a = Throw(MyException()); in TEST() 567 EXPECT_THROW(a.Perform(std::make_tuple('0')), MyException); in TEST() 571 const Action<double()> a = Throw(MyException()); in TEST() 572 EXPECT_THROW(a.Perform(std::make_tuple()), MyException); in TEST()
|
/third_party/python/Lib/test/test_asyncio/ |
D | test_selector_events.py | 1360 class MyException(Exception): class 1363 err = MyException() 1369 exc_info=(MyException, MOCK_ANY, MOCK_ANY))
|
/third_party/lzma/CPP/7zip/Bundles/Alone7z/ |
D | Alone.dsp | 333 SOURCE=..\..\..\Common\MyException.h
|