Exemple #1
0
        public void TestMethod17()
        {
            PointBiList pointBiList = new PointBiList(new Animals());

            pointBiList = PointBiList.AddPoint(pointBiList, 1);
            int number = PointBiList.GetCount(pointBiList);

            Assert.AreEqual(number, 2);
        }
Exemple #2
0
        public void TestMethod16()
        {
            PointBiList pointBiList = null;

            pointBiList = PointBiList.AddPoint(pointBiList, 1);
            int number = PointBiList.GetCount(pointBiList);

            Assert.AreEqual(number, 1);
        }