MCPcopy Index your code
hub / github.com/endbasic/endbasic / test_draw_circle_filled_dot

Function test_draw_circle_filled_dot

std/src/console/drawing.rs:716–720  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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() {

Callers

nothing calls this directly

Calls 1

draw_circle_filledFunction · 0.85

Tested by

no test coverage detected