Runs `script` in the configured machine and returns a `Checker` object to validate expectations about the execution.
(&mut self, script: S)
| 736 | /// Runs `script` in the configured machine and returns a `Checker` object to validate |
| 737 | /// expectations about the execution. |
| 738 | pub fn run<S: Into<String>>(&mut self, script: S) -> Checker<'_> { |
| 739 | let machine = self.build_machine(); |
| 740 | let tester = TesterContinuation { tester: self, machine }; |
| 741 | tester.run(script) |
| 742 | } |
| 743 | |
| 744 | /// Creates a continuation from the current tester state without running any code. |
| 745 | pub fn continue_from_here(&self) -> TesterContinuation<'_> { |
no test coverage detected