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