public void Sort_LargeArray_ReturnsSortedArray() { SortAlgoTester.TestSortingLargeArray(f); }
public void Sort_TwoElementUnorderedArray_ReturnsSortedrray() { SortAlgoTester.TestSortingTwoElementUnorderedArray(f); }
public void Sort_OneElementArray_ReturnsTheSameArray() { SortAlgoTester.TestSortingOneElementArrayArray(f); }
public void Sort_TwoElementOrderedArray_ReturnsTheSameArray() { SortAlgoTester.TestSortingTwoElementOrderedArray(f); }
public void Sort_EmptyArray_ReturnsEmptyArray() { SortAlgoTester.TestSortingEmptyArray(f); }