Exemplo n.º 1
0
        public void TestCopyZeroLengthList()
        {
            var l = new SlidingList <int>(new IList <int>[] { });
            var a = new int[5];

            l.CopyTo(a, 3);
            CollectionAssert.AreEqual(new int[] { 0, 0, 0, 0, 0 }, a);
        }
Exemplo n.º 2
0
        public void TestCopyTo()
        {
            var l = new SlidingList <int>(new IList <int>[] { new int[] { 1, 2, 3 }, new int[] { 10, 20, 30 } });
            var a = new int[10];

            l.CopyTo(a, 3);
            CollectionAssert.AreEqual(new int[] { 0, 0, 0, 1, 2, 3, 10, 20, 30, 0 }, a);
        }