(http_protocol_cls: type[HTTPProtocol])
| 89 | |
| 90 | |
| 91 | async def test_bench_http10(http_protocol_cls: type[HTTPProtocol]) -> None: |
| 92 | protocol = get_connected_protocol(_plain_text_config, http_protocol_cls) |
| 93 | protocol.data_received(HTTP10_GET_REQUEST) |
| 94 | await protocol.loop.run_one() |
| 95 | |
| 96 | |
| 97 | async def test_bench_connection_close(http_protocol_cls: type[HTTPProtocol]) -> None: |
nothing calls this directly
no test coverage detected