()
| 714 | |
| 715 | #[test] |
| 716 | fn test_draw_circle_filled_dot() { |
| 717 | let mut rasops = RecordingRasops::default(); |
| 718 | draw_circle_filled(&mut rasops, PixelsXY::new(10, 20), 1).unwrap(); |
| 719 | assert_eq!([CapturedRasop::DrawPixel(10, 20)], rasops.ops.as_slice()); |
| 720 | } |
| 721 | |
| 722 | #[test] |
| 723 | fn test_draw_circle_filled_larger() { |
nothing calls this directly
no test coverage detected