예제 #1
0
 public InsertionSortTests(SortedIntArraysFixture fixture)
 {
     sortedArrays          = fixture;
     ArraySortingAlgorithm = SortedArrayInt.InsertionSort;
 }
예제 #2
0
 public BubbleSortTests(SortedIntArraysFixture fixture)
 {
     sortedArrays          = fixture;
     ArraySortingAlgorithm = SortedArrayInt.BubbleSort;
 }