()
| 2585 | #[tokio::test] |
| 2586 | #[cfg_attr(not(feature = "component-model-async"), ignore)] |
| 2587 | async fn p3_cli_serve_hello_world_many() -> Result<()> { |
| 2588 | cli_serve_hello_world( |
| 2589 | P3_CLI_SERVE_HELLO_WORLD_COMPONENT, |
| 2590 | CONNECTION_COUNT_MANY, |
| 2591 | REQUESTS_PER_CONNECTION_MANY, |
| 2592 | |cmd| { |
| 2593 | cmd.arg("-Wcomponent-model-async"); |
| 2594 | cmd.arg("-Sp3,cli"); |
| 2595 | }, |
| 2596 | ) |
| 2597 | .await |
| 2598 | } |
| 2599 | |
| 2600 | #[tokio::test] |
| 2601 | #[cfg_attr(not(feature = "component-model-async"), ignore)] |
nothing calls this directly
no test coverage detected