Beispiel #1
0
 public void AppendToArrayTest()
 {
     int[] array    = new int[] { 1, 2, 3, 4, 5 };
     int[] expected = new int[] { 1, 2, 3, 4, 5, 6 };
     Day10.AppendToArray(array, 6).Should().BeEquivalentTo(expected);
 }