示例#1
0
        public void InOrderTest()
        {
            int[][]   cellData = new int[][] { new[] { 0, 1 }, new[] { 2, 3, 4 }, new[] { 5, 6 } };
            Partition p        = new Partition(cellData);

            Assert.IsTrue(p.InOrder());
        }