(&mut self)
| 95 | } |
| 96 | |
| 97 | pub async fn bob(&mut self) -> TestContext { |
| 98 | TestContext::builder() |
| 99 | .configure_bob() |
| 100 | .with_id_offset(2000) |
| 101 | .with_log_sink(self.log_sink.clone()) |
| 102 | .build(Some(&mut self.used_names)) |
| 103 | .await |
| 104 | } |
| 105 | |
| 106 | pub async fn charlie(&mut self) -> TestContext { |
| 107 | TestContext::builder() |
no test coverage detected