()
| 430 | |
| 431 | |
| 432 | def test_stream_buffer_short_read_error(): |
| 433 | reader = Buffer.from_stream(OneByteStream(b"\x01\x02\x03")) |
| 434 | with pytest.raises(Exception, match="Buffer out of bound"): |
| 435 | reader.read_uint32() |
| 436 | |
| 437 | |
| 438 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected