Starts a test [`TestServer`], panicking if the server could not be started. For cases when startup might fail, see [`TestHarness::try_start`].
(self)
| 251 | /// |
| 252 | /// For cases when startup might fail, see [`TestHarness::try_start`]. |
| 253 | pub async fn start(self) -> TestServer { |
| 254 | self.try_start().await.expect("Failed to start test Server") |
| 255 | } |
| 256 | |
| 257 | /// Like [`TestHarness::start`] but can specify a cert reload trigger. |
| 258 | pub async fn start_with_trigger(self, tls_reload_certs: ReloadTrigger) -> TestServer { |
no test coverage detected