public void Test6() { int[] expected = null; int[] input = new int[] { }; int length = 0; var actual = Class27.PrintCombos(input, length); Assert.Equal(expected, actual); }
public void Test1() { int[] expected = new int[] { 123, 124, 134, 234 }; int[] input = new int[] { 1, 2, 3, 4 }; int length = 3; var actual = Class27.PrintCombos(input, length); Assert.Equal(expected, actual); }