public void BubbleSortInterface_SortMinElementAscendArray_Axpected_ArgumentNullException() { int[][] inputArray = null; var comparer = new SortMinElementAscendArray(); Assert.Throws <ArgumentNullException>(() => BubbleSortAcrossInterface.BubbleSortInterface(inputArray, comparer)); }
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); }