public void BubbleSortInterface_SortMinElementAscendArray_With_Valid_Data() { var inputArray = HelperSort.GetJaggedArray(); var comparer = new SortMinElementAscendArray(); BubbleSortAcrossInterface.BubbleSortInterface(inputArray, comparer); var outputMinElementRowArray = HelperSort.SortMinElementAscendHelper(inputArray).Item2; Assert.IsTrue(HelperSort.SortMinElementAscendHelper(inputArray).Item1); }
public void BubbleSortDelegate_SortMinElementAscendArray_With_Valid_Data() { var inputArray = HelperSort.GetJaggedArray(); var comparer = new SortMinElementAscendArrayWithoutInterface(); Func <int[], int[], int> delegatInput = comparer.Compare; BubbleSortAcrossDelegate.BubbleSortDelegate(inputArray, delegatInput); var outputMinElementRowArray = HelperSort.SortMinElementAscendHelper(inputArray).Item2; Assert.IsTrue(HelperSort.SortMinElementAscendHelper(inputArray).Item1); }