public static void Area_Returns_Area_of_the_Shape()
        {
            RegularPolygon regularPolygon = new RegularPolygon(5, 10);

            Assert.AreEqual(237.7641291, regularPolygon.Area(), Tolerance);
        }