(&mut self, x1y1: PixelsXY, x2y2: PixelsXY)
| 366 | } |
| 367 | |
| 368 | fn draw_line(&mut self, x1y1: PixelsXY, x2y2: PixelsXY) -> io::Result<()> { |
| 369 | self.captured_out.push(CapturedOut::DrawLine(x1y1, x2y2)); |
| 370 | Ok(()) |
| 371 | } |
| 372 | |
| 373 | fn draw_pixel(&mut self, xy: PixelsXY) -> io::Result<()> { |
| 374 | self.captured_out.push(CapturedOut::DrawPixel(xy)); |
no test coverage detected