private void InPlaceTestSort(IInPlaceSort <int> sorter) { InPlaceTestSort(sorter, unsorted); }
private void InPlaceTestSort(IInPlaceSort <int> sorter, int[] arrayToSort) { sorter.Sort(arrayToSort); VerifySorted(arrayToSort); }