D | test_case.py | 428 self.assertTrue(Foo('test').failureException is AssertionError) 444 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__explicit_raise.Foo 446 self.assertTrue(Foo('test').failureException is RuntimeError) 467 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__implicit_raise.Foo 469 self.assertTrue(Foo('test').failureException is RuntimeError) 565 self.assertRaises(self.failureException, self.assertIs, thing, object()) 570 self.assertRaises(self.failureException, self.assertIsNot, thing, thing) 575 self.assertRaises(self.failureException, self.assertIsInstance, 581 self.assertRaises(self.failureException, self.assertNotIsInstance, 595 self.assertRaises(self.failureException, self.assertIn, 'x', 'abc') [all …]
|