public void TestPoint7() { BigInteger expected = 3; BigInteger actual; actual = Point7.GetAnswer(list); Assert.AreEqual(expected, actual); }
public override string ToString() { string res = ""; res += string.Format("Point1- {0}\n", Point1.ToString()); res += string.Format("Point2- {0}\n", Point2.ToString()); res += string.Format("Point3- {0}\n", Point3.ToString()); res += string.Format("Point4- {0}\n", Point4.ToString()); res += string.Format("Point5- {0}\n", Point5.ToString()); res += string.Format("Point6- {0}\n", Point6.ToString()); res += string.Format("Point7- {0}\n", Point7.ToString()); res += string.Format("Point8- {0}\n", Point8.ToString()); res += string.Format("Edge- {0}", EdgeLenght); return(res); }