Example #1
0
 public void CheckPing_NumberDivisibleByThreeAndFive_False()
 {
     Assert.AreEqual(false, PingPongs.CheckPingPong(31));
     Assert.AreEqual(false, PingPongs.CheckPingPong(14));
 }
Example #2
0
 public void CheckPing_NumberDivisibleByThreeAndFive_True()
 {
     Assert.AreEqual(true, PingPongs.CheckPingPong(30));
     Assert.AreEqual(true, PingPongs.CheckPingPong(15));
 }