4 references to DrawImage
System.Drawing.Common.Tests (4)
mono\System.Drawing\GraphicsTests.cs (4)
2510
Assert.Throws<ArgumentNullException>(() => g.
DrawImage
(null, Array.Empty<Point>()));
2518
Assert.Throws<ArgumentNullException>(() => g.
DrawImage
(bmp, (Point[])null));
2526
Assert.Throws<ArgumentException>(() => g.
DrawImage
(bmp, Array.Empty<Point>()));
2534
g.
DrawImage
(bmp, [new(0, 0), new(1, 1), new(2, 2)]);