public void RadixSortTest() { // Arrange var input = new int[] { 0, 15, 200, 3, 55555, 66666, 222, 888, 666, 9999, 12345893, 68478512, 6317521 }; var actual = RadixSort.RaxdixSortAlgo(input); // Act & Assert actual.Should().BeInAscendingOrder(); }