(self, obj, result_string)
| 5942 | """Test str() and repr() on Optionals and Positionals""" |
| 5943 | |
| 5944 | def assertStringEqual(self, obj, result_string): |
| 5945 | for func in [str, repr]: |
| 5946 | self.assertEqual(func(obj), result_string) |
| 5947 | |
| 5948 | def test_optional(self): |
| 5949 | option = argparse.Action( |
no test coverage detected