Records that the area between `x1y1` and `x2y2` is damaged after all `op`s have been executed.
(mut self, x1y1: LcdXY, x2y2: LcdXY)
| 135 | /// Records that the area between `x1y1` and `x2y2` is damaged after all `op`s have been |
| 136 | /// executed. |
| 137 | pub(super) fn expect_damage(mut self, x1y1: LcdXY, x2y2: LcdXY) -> Self { |
| 138 | assert!(self.exp_damage.is_none()); |
| 139 | self.exp_damage = Some((x1y1, x2y2)); |
| 140 | self |
| 141 | } |
| 142 | |
| 143 | /// Records that the given `op` should have been received by the mock `LcdRecorder` after |
| 144 | /// all `op`s have been executed. |
no outgoing calls
no test coverage detected