10 references to DrawPath
System.Drawing.Common.Tests (9)
mono\System.Drawing\GraphicsTests.cs (3)
2857Assert.Throws<ArgumentNullException>(() => g.DrawPath(null, path)); 2865Assert.Throws<ArgumentNullException>(() => g.DrawPath(Pens.Black, null)); 2887g.DrawPath(Pens.SteelBlue, path);
System\Drawing\GraphicsTests.cs (6)
2385AssertExtensions.Throws<ArgumentNullException>("pen", () => graphics.DrawPath(null, graphicsPath)); 2397AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPath(pen, graphicsPath)); 2406AssertExtensions.Throws<ArgumentNullException>("path", () => graphics.DrawPath(pen, null)); 2418AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPath(pen, graphicsPath)); 2431Assert.Throws<InvalidOperationException>(() => graphics.DrawPath(pen, graphicsPath)); 2448AssertExtensions.Throws<ArgumentException>(null, () => graphics.DrawPath(pen, graphicsPath));
WinFormsControlsTest (1)
CustomComCtl32Button.cs (1)
119g.DrawPath(pen, path);