Sets the prompt to use for the test.
(mut self, prompt: &'static str)
| 592 | |
| 593 | /// Sets the prompt to use for the test. |
| 594 | fn set_prompt(mut self, prompt: &'static str) -> Self { |
| 595 | self.prompt = prompt; |
| 596 | self |
| 597 | } |
| 598 | |
| 599 | /// Sets the previous text to use for the test. |
| 600 | fn set_previous(mut self, previous: &'static str) -> Self { |
no outgoing calls