(self)
| 754 | basetype = frozenset |
| 755 | |
| 756 | def test_init(self): |
| 757 | s = self.thetype(self.word) |
| 758 | s.__init__(self.otherword) |
| 759 | self.assertEqual(s, set(self.word)) |
| 760 | |
| 761 | def test_constructor_identity(self): |
| 762 | s = self.thetype(range(3)) |
nothing calls this directly
no test coverage detected