Starts a test [`TestServer`], returning an error if the server could not be started.
(self)
| 263 | |
| 264 | /// Starts a test [`TestServer`], returning an error if the server could not be started. |
| 265 | pub async fn try_start(self) -> Result<TestServer, anyhow::Error> { |
| 266 | self.try_start_with_trigger(mz_server_core::cert_reload_never_reload()) |
| 267 | .await |
| 268 | } |
| 269 | |
| 270 | /// Like [`TestHarness::try_start`] but can specify a cert reload trigger. |
| 271 | pub async fn try_start_with_trigger( |
no test coverage detected