Expects the mock service to have logged in with the access `token`.
(self, token: S)
| 347 | impl<'a> ClientChecker<'a> { |
| 348 | /// Expects the mock service to have logged in with the access `token`. |
| 349 | pub(crate) fn expect_access_token<S: Into<String>>(self, token: S) -> Self { |
| 350 | Self { |
| 351 | checker: self.checker, |
| 352 | service: self.service, |
| 353 | exp_access_token: Some(AccessToken::new(token.into())), |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | /// See the wrapped `Checker::expect_err` function for details. |
| 358 | pub fn expect_compilation_err<S: Into<String>>(self, message: S) -> Self { |
no outgoing calls
no test coverage detected