Creates a continuation from the current tester state without running any code.
(&self)
| 743 | |
| 744 | /// Creates a continuation from the current tester state without running any code. |
| 745 | pub fn continue_from_here(&self) -> TesterContinuation<'_> { |
| 746 | let machine = self.build_machine(); |
| 747 | TesterContinuation { tester: self, machine } |
| 748 | } |
| 749 | |
| 750 | /// Runs `scripts` in the configured machine and returns a `Checker` object to validate |
| 751 | /// expectations about the execution. |
no test coverage detected