Exemplo n.º 1
0
        public void SelectionSortOrderTest(int[] array)
        {
            SelectionSort ss = new SelectionSort(array);

            ss.Sort();

            bool actual   = ss.JudgeOrdered(true);
            bool excepted = true;

            Assert.Equal(excepted, actual);
        }