(self)
| 113 | assert len(q) == 0 |
| 114 | |
| 115 | def test_get_all_many(self) -> None: |
| 116 | q = BytesQueueBuffer() |
| 117 | q.put(b"a") |
| 118 | q.put(b"b") |
| 119 | q.put(b"c") |
| 120 | assert q.get_all() == b"abc" |
| 121 | assert len(q) == 0 |
| 122 | |
| 123 | @pytest.mark.parametrize( |
| 124 | "get_func", |
nothing calls this directly
no test coverage detected