()
| 126 | |
| 127 | #[test] |
| 128 | fn test_fill_one_pixel_no_sync() { |
| 129 | Tester::new(size(8, 4)) |
| 130 | .op(|l| l.set_sync(false)) |
| 131 | .op(|l| l.set_draw_color((100, 200, 50))) |
| 132 | .op(|l| l.fill(xy(3, 2), xy(3, 2)).unwrap()) |
| 133 | .expect_pixel(xy(3, 2), (100, 200, 50)) |
| 134 | .expect_damage(xy(3, 2), xy(3, 2)) |
| 135 | .check(); |
| 136 | } |
| 137 | |
| 138 | #[test] |
| 139 | fn test_fill_rect_sync() { |
nothing calls this directly
no test coverage detected