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