Example #1
0
        public void Test2A()
        {
            Dec6obj a = new Dec6obj(new int[] { 4, 1, 15, 12, 0, 9, 9, 5, 5, 8, 7, 3, 14, 5, 12, 3 });

            Assert.AreEqual(2392, a.CountLoopLength());
        }
Example #2
0
        public void Test1C()
        {
            Dec6obj a = new Dec6obj(new int[] { 3, 0 });

            Assert.AreEqual(3, a.CountReallocations());
        }
Example #3
0
        public void Test1D()
        {
            Dec6obj a = new Dec6obj(new int[] { 4, 1, 15, 12, 0, 9, 9, 5, 5, 8, 7, 3, 14, 5, 12, 3 });

            Assert.AreEqual(6681, a.CountReallocations());
        }
Example #4
0
        public void Test1B()
        {
            Dec6obj a = new Dec6obj(new int[] { 1, 1 });

            Assert.AreEqual(2, a.CountReallocations());
        }