See the wrapped `Checker::expect_file` function for details.
(self, name: N, content: C)
| 374 | |
| 375 | /// See the wrapped `Checker::expect_file` function for details. |
| 376 | pub fn expect_file<N: Into<String>, C: Into<String>>(self, name: N, content: C) -> Self { |
| 377 | Self { |
| 378 | checker: self.checker.expect_file(name, content), |
| 379 | service: self.service, |
| 380 | exp_access_token: self.exp_access_token, |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | /// See the wrapped `Checker::expect_output` function for details. |
| 385 | pub fn expect_output<V: Into<Vec<CapturedOut>>>(self, out: V) -> Self { |
no outgoing calls
no test coverage detected