()
| 472 | |
| 473 | #[tokio::test] |
| 474 | async fn test_start_stop() { |
| 475 | run_hq_test(|mut server| async move { |
| 476 | server.do_not_notify(); |
| 477 | let mut session = server.client().await; |
| 478 | client_stop_server(session.connection()).await?; |
| 479 | Ok(server) |
| 480 | }) |
| 481 | .await; |
| 482 | } |
| 483 | |
| 484 | // Just a no-op test to check that the notify logic works. |
| 485 | #[tokio::test] |
nothing calls this directly
no test coverage detected