Records that the given `op` should have been received by the mock `LcdRecorder` after all `op`s have been executed.
(mut self, op: &str)
| 143 | /// Records that the given `op` should have been received by the mock `LcdRecorder` after |
| 144 | /// all `op`s have been executed. |
| 145 | pub(super) fn expect_op(mut self, op: &str) -> Self { |
| 146 | self.exp_ops.push(op.into()); |
| 147 | self |
| 148 | } |
| 149 | |
| 150 | /// Configures the test to ignore the content of all pixels. This is for simplicity of |
| 151 | /// tests that only one to validate other aspects of the LCD handling. |
no test coverage detected