()
| 104 | |
| 105 | #[test] |
| 106 | fn test_damage_extend_up_left() { |
| 107 | Tester::new(size(10, 12)) |
| 108 | .op(|l| l.set_sync(false)) |
| 109 | .op(|l| l.set_draw_color((255, 255, 255))) |
| 110 | .op(|l| l.fill(xy(4, 2), xy(6, 7)).unwrap()) |
| 111 | .op(|l| l.fill(xy(2, 1), xy(2, 1)).unwrap()) |
| 112 | .expect_damage(xy(2, 1), xy(6, 7)) |
| 113 | .ignore_pixels() |
| 114 | .check(); |
| 115 | } |
| 116 | |
| 117 | #[test] |
| 118 | fn test_fill_one_pixel_sync() { |
nothing calls this directly
no test coverage detected