| 16 | /// Simple mock service that simulates HTTP responses |
| 17 | #[derive(Clone)] |
| 18 | struct MockService { |
| 19 | request_count: std::sync::Arc<std::sync::atomic::AtomicU32>, |
| 20 | } |
| 21 | |
| 22 | impl MockService { |
| 23 | fn new() -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected