5 references to new
System.Drawing.Common.Tests (5)
System\Drawing\Drawing2D\GraphicsPathIteratorTests.cs (1)
192
using GraphicsPath gp =
new
(points, types);
System\Drawing\Drawing2D\GraphicsPathTests.cs (4)
66
using GraphicsPath gp =
new
(points, types);
82
AssertExtensions.Throws<ArgumentNullException>("pts", () => new
GraphicsPath
((Point[])null, new byte[1]));
95
AssertExtensions.Throws<ArgumentException>(null, () => new
GraphicsPath
(new Point[pointsLength], new byte[typesLength]));
2056
using GraphicsPath path =
new
(expectedPoints, expectedTypes);