(self)
| 332 | do_values=True) |
| 333 | |
| 334 | def test_items(self): |
| 335 | # Get keys and values using items() |
| 336 | self._check_iteration(self._box.items, do_keys=True, do_values=True) |
| 337 | |
| 338 | def _check_iteration(self, method, do_keys, do_values, repetitions=10): |
| 339 | for value in method(): |
nothing calls this directly
no test coverage detected