()
| 653 | |
| 654 | #[test] |
| 655 | fn test_draw_circle_dot() { |
| 656 | let mut rasops = RecordingRasops::default(); |
| 657 | draw_circle(&mut rasops, PixelsXY::new(10, 20), 1).unwrap(); |
| 658 | assert_eq!([CapturedRasop::DrawPixel(10, 20)], rasops.ops.as_slice()); |
| 659 | } |
| 660 | |
| 661 | #[test] |
| 662 | fn test_draw_circle_larger() { |
nothing calls this directly
no test coverage detected