예제 #1
0
 public void should_be_minus_one_when_array_is_empty()
 {
     Assert.Equal(-1, chop.ChopRecursion(3, new int[] {}));
     Assert.Equal(-1, chop.ChopIteration(3, new int[] { }));
 }