public void TestPointRound () { var point = new Point (2.4, 2.7); point = point.Round (); Assert.AreEqual (Math.Round (2.4), point.X); Assert.AreEqual (Math.Round (2.7), point.Y); }