Exemplo n.º 1
0
 public static void CountBy2()
 {
     Assert.AreEqual(new int[] { 2, 4, 6, 8, 10 }, Kata.CountBy(2, 5), "Array does not match");
 }
Exemplo n.º 2
0
 public static void CountBy1()
 {
     Assert.AreEqual(new int[] { 1, 2, 3, 4, 5 }, Kata.CountBy(1, 5), "Array does not match");
 }