()
| 2631 | |
| 2632 | #[tokio::test] |
| 2633 | async fn p2_cli_serve_hello_world_many() -> Result<()> { |
| 2634 | cli_serve_hello_world( |
| 2635 | P2_CLI_SERVE_HELLO_WORLD_COMPONENT, |
| 2636 | CONNECTION_COUNT_MANY, |
| 2637 | REQUESTS_PER_CONNECTION_MANY, |
| 2638 | |cmd| { |
| 2639 | cmd.arg("-Scli"); |
| 2640 | }, |
| 2641 | ) |
| 2642 | .await |
| 2643 | } |
| 2644 | |
| 2645 | #[tokio::test] |
| 2646 | async fn p2_cli_serve_hello_world_many_with_reuse() -> Result<()> { |
nothing calls this directly
no test coverage detected