(self)
| 648 | self.assertIsSubclass(NumericTestCase, unittest.TestCase) |
| 649 | |
| 650 | def test_error_msg_numeric(self): |
| 651 | # Test the error message generated for numeric comparisons. |
| 652 | args = (2.5, 4.0, 0.5, 0.25, None) |
| 653 | self.do_test(args) |
| 654 | |
| 655 | def test_error_msg_sequence(self): |
| 656 | # Test the error message generated for sequence comparisons. |