D | test_case.py | 94 with test.assertRaises(test.failureException): 453 self.assertIs(Foo('test').failureException, AssertionError) 469 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__explicit_raise.Foo 471 self.assertIs(Foo('test').failureException, RuntimeError) 492 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__implicit_raise.Foo 494 self.assertIs(Foo('test').failureException, RuntimeError) 641 self.assertRaises(self.failureException, self.assertIs, thing, object()) 646 self.assertRaises(self.failureException, self.assertIsNot, thing, thing) 651 self.assertRaises(self.failureException, self.assertIsInstance, 657 self.assertRaises(self.failureException, self.assertNotIsInstance, [all …]
|