()
| 646 | |
| 647 | #[test] |
| 648 | fn test_draw_circle_zero() { |
| 649 | let mut rasops = RecordingRasops::default(); |
| 650 | draw_circle(&mut rasops, PixelsXY::new(10, 20), 0).unwrap(); |
| 651 | assert!(rasops.ops.is_empty()); |
| 652 | } |
| 653 | |
| 654 | #[test] |
| 655 | fn test_draw_circle_dot() { |
nothing calls this directly
no test coverage detected