Ejemplo n.º 1
0
        public void Insert_Sort(int[] input, int[] expected)
        {
            int[] result = InsertionSort.InserstionSortMethod(input);

            Assert.Equal(expected, result);
        }