4 references to FillRectangles
System.Drawing.Common.Tests (4)
mono\System.Drawing\GraphicsTests.cs (4)
898
g.
FillRectangles
(brush, rectf);
1167
Assert.Throws<ArgumentNullException>(() => g.
FillRectangles
(null, new RectangleF[1]));
1175
Assert.Throws<ArgumentNullException>(() => g.
FillRectangles
(Brushes.Red, (RectangleF[])null));
1183
Assert.Throws<ArgumentException>(() => g.
FillRectangles
(Brushes.Red, Array.Empty<RectangleF>()));