(self)
| 356 | self.assertRaises(TypeError, d.__contains__) |
| 357 | |
| 358 | def test_len(self): |
| 359 | BasicTestMappingProtocol.test_len(self) |
| 360 | d = self._full_mapping({'a': 1, 'b': 2}) |
| 361 | self.assertEqual(len(d), 2) |
| 362 | |
| 363 | def test_getitem(self): |
| 364 | BasicTestMappingProtocol.test_getitem(self) |
nothing calls this directly
no test coverage detected