コード例 #1
0
        public void DoesNotSortSingleElementArray(int[] array)
        {
            // Arrange
            var shellSort = new Shellsort(array);

            // Act
            shellSort.Sort();

            // Assert
            CollectionAssert.IsOrdered(array);
        }
コード例 #2
0
        public void SortsArray(int[] array)
        {
            // Arrange
            var shellSort = new Shellsort(array);

            // Act
            shellSort.Sort();

            // Assert
            CollectionAssert.IsOrdered(array);
        }