Example #1
0
 public void Sort_GivenArrayWithUnsortedElements_ShouldSortElementsWithinTheArray()
 {
     GenericTests.Sort_GivenArrayWithUnsortedElements_ShouldSortElementsWithinTheArray(Mergesort.Sort);
 }
Example #2
0
 public void Sort_GivenEmptyArray_ShouldLeaveTheArrayUnmodified()
 {
     GenericTests.Sort_GivenEmptyArray_ShouldLeaveTheArrayUnmodified(Mergesort.Sort);
 }
Example #3
0
 public void Sort_GivenSingleElementArray_ShouldLeaveTheArrayUnmodified()
 {
     GenericTests.Sort_GivenSingleElementArray_ShouldLeaveTheArrayUnmodified(Mergesort.Sort);
 }