(self, obj, result_string)
| 6060 | """Test str() and repr() on Optionals and Positionals""" |
| 6061 | |
| 6062 | def assertStringEqual(self, obj, result_string): |
| 6063 | for func in [str, repr]: |
| 6064 | self.assertEqual(func(obj), result_string) |
| 6065 | |
| 6066 | def test_optional(self): |
| 6067 | option = argparse.Action( |
no test coverage detected