(self)
| 375 | self.assertRaises(TypeError, d.__getitem__) |
| 376 | |
| 377 | def test_clear(self): |
| 378 | d = self._full_mapping({1:1, 2:2, 3:3}) |
| 379 | d.clear() |
| 380 | self.assertEqual(d, {}) |
| 381 | |
| 382 | self.assertRaises(TypeError, d.clear, None) |
| 383 | |
| 384 | def test_update(self): |
| 385 | BasicTestMappingProtocol.test_update(self) |
nothing calls this directly
no test coverage detected