(self)
| 626 | self.assertEqual(repr(UID(1)), "UID(1)") |
| 627 | |
| 628 | def test_uid_index(self): |
| 629 | self.assertEqual(operator.index(UID(1)), 1) |
| 630 | |
| 631 | def test_uid_pickle(self): |
| 632 | for proto in range(pickle.HIGHEST_PROTOCOL + 1): |
nothing calls this directly
no test coverage detected