D | test_case.py | 295 self.assertTrue(Foo('test').failureException is AssertionError) 311 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__explicit_raise.Foo 313 self.assertTrue(Foo('test').failureException is RuntimeError) 334 failureException = RuntimeError variable in Test_TestCase.test_failureException__subclassing__implicit_raise.Foo 336 self.assertTrue(Foo('test').failureException is RuntimeError) 436 self.assertRaises(self.failureException, self.assertIs, thing, object()) 441 self.assertRaises(self.failureException, self.assertIsNot, thing, thing) 446 self.assertRaises(self.failureException, self.assertIsInstance, 452 self.assertRaises(self.failureException, self.assertNotIsInstance, 466 self.assertRaises(self.failureException, self.assertIn, 'x', 'abc') [all …]
|