public void SelectionSort() { int[] array = { 3, 4, 5, 6, 2 }; Lib.Sorting.SelectionSort.Sort(array); AssertSorting.AssertAscendingOrder(array.Reverse().ToArray()); }
public void InsertionSort() { int[] array = { 3, 4, 5, 6, 2 }; Lib.Sorting.InsertionSort.Sort(array); AssertSorting.AssertAscendingOrder(array); }