public void Sort_Iterative_V2_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(InsertionSort.Sort_Iterative_V2);
 }
 public void Sort_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(BubbleSort.Sort);
 }
 public void Sort_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(SelectionSort.Sort);
 }