Пример #1
0
        public void SortByMinimumOfTheElementsTest()
        {
            int[][] b = new int[3][];

            b[0] = new int[2] {
                3, 5
            };

            b[1] = new int[3] {
                2, 9, 1
            };

            b[2] = new int[4] {
                8, 5, 3, 2
            };
            JaggedArray a = new JaggedArray(b);

            int[][] f = new int[3][];

            b[2] = new int[2] {
                3, 5
            };

            b[0] = new int[3] {
                2, 9, 1
            };

            b[1] = new int[4] {
                8, 5, 3, 2
            };
            JaggedArray expect = new JaggedArray(f);

            a.SortByMinimumOfTheElements();
            for (int i = 0; i < expect.Array.Length; i++)
            {
                for (int j = 0; j < expect.Array[i].Length; j++)
                {
                    Assert.AreEqual(expect.Array[i][j], a.Array[i][j]);
                }
            }
        }