| 110 | } |
| 111 | |
| 112 | trait ServerRuntime { |
| 113 | fn check_health(&self, config: &ServerConfig) -> bool; |
| 114 | fn spawn_server(&self, binary: &str, config: &ServerConfig) -> Result<(), String>; |
| 115 | fn sleep(&self, duration: Duration); |
| 116 | } |
| 117 | |
| 118 | struct RealServerRuntime; |
| 119 |
nothing calls this directly
no outgoing calls
no test coverage detected