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