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