public void TestMethod17() { PointBiList pointBiList = new PointBiList(new Animals()); pointBiList = PointBiList.AddPoint(pointBiList, 1); int number = PointBiList.GetCount(pointBiList); Assert.AreEqual(number, 2); }
public void TestMethod16() { PointBiList pointBiList = null; pointBiList = PointBiList.AddPoint(pointBiList, 1); int number = PointBiList.GetCount(pointBiList); Assert.AreEqual(number, 1); }