コード例 #1
0
 public void Sort_Iterative_V2_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(InsertionSort.Sort_Iterative_V2);
 }
コード例 #2
0
 public void Sort_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(BubbleSort.Sort);
 }
コード例 #3
0
 public void Sort_WithDifferentInputs()
 {
     SortTests.TestSortMethodWithDifferentInputs(SelectionSort.Sort);
 }