(self)
| 196 | self._test_remove_or_delitem(self._box.remove) |
| 197 | |
| 198 | def test_delitem(self): |
| 199 | # Remove messages using __delitem__() |
| 200 | self._test_remove_or_delitem(self._box.__delitem__) |
| 201 | |
| 202 | def _test_remove_or_delitem(self, method): |
| 203 | # (Used by test_remove() and test_delitem().) |
nothing calls this directly
no test coverage detected