コード例 #1
0
        public void TestConstructor()
        {
            ShaKyList temp     = new ShaKyList();
            ShaKyList tempData = temp;

            Assert.That(temp == tempData);
        }
コード例 #2
0
        public void TestResistNullInsert()
        {
            ShaKyList temp = new ShaKyList();

            temp.Insert(null, 0);

            Assert.AreEqual(0, temp.Count);
        }
コード例 #3
0
        public void TestContainsTrue()
        {
            ShaKyList temp = new ShaKyList()
            {
                10
            };

            Assert.AreEqual(true, temp.Contains(10));
        }
コード例 #4
0
        public void TestFloatInsert()
        {
            ShaKyList temp = new ShaKyList();
            float     x    = 10.234f;

            temp.Insert(x, 0);

            Assert.AreEqual(x, temp[0]);
        }
コード例 #5
0
        public void TestDoubleInsert()
        {
            ShaKyList temp = new ShaKyList();
            double    x    = 10.23;

            temp.Insert(x, 0);

            Assert.AreEqual(x, temp[0]);
        }
コード例 #6
0
        public void TestIntInsert()
        {
            ShaKyList temp = new ShaKyList();
            int       x    = 10;

            temp.Insert(x, 0);

            Assert.AreEqual(x, temp[0]);
        }
コード例 #7
0
        public void TestStringInsert()
        {
            ShaKyList temp = new ShaKyList();
            string    x    = "Hello World";

            temp.Insert(x, 0);

            Assert.AreEqual(x, temp[0]);
        }
コード例 #8
0
        public void TestContainsFalse()
        {
            ShaKyList temp = new ShaKyList()
            {
                10
            };

            Assert.AreEqual(false, temp.Contains(15));
        }
コード例 #9
0
        public void TestRemoveAt()
        {
            ShaKyList temp = new ShaKyList()
            {
                1, 2
            };

            temp.RemoveAt(1);

            Assert.AreEqual(1, temp.Count);
        }