Returns a mutable reference to the machine inside this continuation.
(&mut self)
| 787 | impl<'a> TesterContinuation<'a> { |
| 788 | /// Returns a mutable reference to the machine inside this continuation. |
| 789 | pub fn get_machine(&mut self) -> &mut Machine { |
| 790 | &mut self.machine |
| 791 | } |
| 792 | |
| 793 | /// Runs `script` in the configured machine and returns a `Checker` object to validate |
| 794 | /// expectations about the execution. |
no outgoing calls
no test coverage detected