(self, args)
| 638 | # that are expected to be found even if the overall error message changes. |
| 639 | |
| 640 | def do_test(self, args): |
| 641 | actual_msg = NumericTestCase._make_std_err_msg(*args) |
| 642 | expected = self.generate_substrings(*args) |
| 643 | for substring in expected: |
| 644 | self.assertIn(substring, actual_msg) |
| 645 | |
| 646 | def test_numerictestcase_is_testcase(self): |
| 647 | # Ensure that NumericTestCase actually is a TestCase. |
no test coverage detected