public void DoesNotSortSingleElementArray(int[] array) { // Arrange var shellSort = new Shellsort(array); // Act shellSort.Sort(); // Assert CollectionAssert.IsOrdered(array); }
public void SortsArray(int[] array) { // Arrange var shellSort = new Shellsort(array); // Act shellSort.Sort(); // Assert CollectionAssert.IsOrdered(array); }