Validates all expectations.
(self)
| 407 | |
| 408 | /// Validates all expectations. |
| 409 | pub(crate) fn check(self) { |
| 410 | self.checker.check(); |
| 411 | |
| 412 | let mut service = self.service.borrow_mut(); |
| 413 | assert_eq!(self.exp_access_token, service.access_token); |
| 414 | service.verify_all_used(); |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | /// See the wrapped `check_stmt_compilation_err` function for details. |
no test coverage detected