(self)
| 62 | self.assertRaises(TypeError, set().__init__, a=1) |
| 63 | |
| 64 | def test_uniquification(self): |
| 65 | actual = sorted(self.s) |
| 66 | expected = sorted(self.d) |
| 67 | self.assertEqual(actual, expected) |
| 68 | self.assertRaises(PassThru, self.thetype, check_pass_thru()) |
| 69 | self.assertRaises(TypeError, self.thetype, [[]]) |
| 70 | |
| 71 | def test_len(self): |
| 72 | self.assertEqual(len(self.s), len(self.d)) |
nothing calls this directly
no test coverage detected