Sets the previous text to use for the test.
(mut self, previous: &'static str)
| 598 | |
| 599 | /// Sets the previous text to use for the test. |
| 600 | fn set_previous(mut self, previous: &'static str) -> Self { |
| 601 | self.previous = previous; |
| 602 | self |
| 603 | } |
| 604 | |
| 605 | /// Enables history tracking and sets the history to use for the test as `history` and |
| 606 | /// expects that `history` matches `exp_history` upon test completion. |
no outgoing calls