Exemplo n.º 1
0
 public void Test4()
 {
     int[] peopleInProgram = new int[] { 50, 25, 100 };
     Assert.AreEqual("NO", Kata.Tickets(peopleInProgram));
 }
Exemplo n.º 2
0
 public void Test3()
 {
     int[] peopleInProgram = new int[] { 25, 50 };
     Assert.AreEqual("YES", Kata.Tickets(peopleInProgram));
 }