Ejemplo n.º 1
0
        public void Quick_sort_array()
        {
            // Arrange
            int[] newArray = new[] { 23, 75, 4, 45, 76 };

            // Act
            int[] result = Quick.quickSort(newArray);

            //Assert
            Assert.Equal(new int[] { 4, 23, 45, 75, 76 }, result);
        }