(self)
| 107 | assert len(q) == 0 |
| 108 | |
| 109 | def test_get_all_single(self) -> None: |
| 110 | q = BytesQueueBuffer() |
| 111 | q.put(b"a") |
| 112 | assert q.get_all() == b"a" |
| 113 | assert len(q) == 0 |
| 114 | |
| 115 | def test_get_all_many(self) -> None: |
| 116 | q = BytesQueueBuffer() |
nothing calls this directly
no test coverage detected