(self)
| 561 | self.assertEqual(hash(UID(1)), hash(UID(1))) |
| 562 | |
| 563 | def test_uid_repr(self): |
| 564 | self.assertEqual(repr(UID(1)), "UID(1)") |
| 565 | |
| 566 | def test_uid_index(self): |
| 567 | self.assertEqual(operator.index(UID(1)), 1) |
nothing calls this directly
no test coverage detected