See the wrapped `Checker::expect_prints` function for details.
(self, out: V)
| 392 | |
| 393 | /// See the wrapped `Checker::expect_prints` function for details. |
| 394 | pub fn expect_prints<S: Into<String>, V: Into<Vec<S>>>(self, out: V) -> Self { |
| 395 | Self { |
| 396 | checker: self.checker.expect_prints(out), |
| 397 | service: self.service, |
| 398 | exp_access_token: self.exp_access_token, |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | /// See the wrapped `Checker::take_captured_out` function for details. |
| 403 | #[must_use] |
no outgoing calls
no test coverage detected