(self)
| 620 | self.assertNotEqual(UID(1), "not uid") |
| 621 | |
| 622 | def test_uid_hash(self): |
| 623 | self.assertEqual(hash(UID(1)), hash(UID(1))) |
| 624 | |
| 625 | def test_uid_repr(self): |
| 626 | self.assertEqual(repr(UID(1)), "UID(1)") |
nothing calls this directly
no test coverage detected