Exemplo n.º 1
0
 public void Sort_GivenArrayWithUnsortedElements_ShouldSortElementsWithinTheArray()
 {
     GenericTests.Sort_GivenArrayWithUnsortedElements_ShouldSortElementsWithinTheArray(Mergesort.Sort);
 }
Exemplo n.º 2
0
 public void Sort_GivenEmptyArray_ShouldLeaveTheArrayUnmodified()
 {
     GenericTests.Sort_GivenEmptyArray_ShouldLeaveTheArrayUnmodified(Mergesort.Sort);
 }
Exemplo n.º 3
0
 public void Sort_GivenSingleElementArray_ShouldLeaveTheArrayUnmodified()
 {
     GenericTests.Sort_GivenSingleElementArray_ShouldLeaveTheArrayUnmodified(Mergesort.Sort);
 }