Sets the size of the console.
(mut self, size: CharsXY)
| 580 | |
| 581 | /// Sets the size of the console. |
| 582 | fn set_size_chars(mut self, size: CharsXY) -> Self { |
| 583 | self.size_chars = size; |
| 584 | self |
| 585 | } |
| 586 | |
| 587 | /// Sets the expected resulting line for the test. |
| 588 | fn set_line(mut self, line: &'static str) -> Self { |
no outgoing calls