示例#1
0
 public void MakePingPong_NumberNotDivisibleByThreeOrFive_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("7", testPingPong.MakePingPong(7));
 }
示例#2
0
 public void MakePingPong_NumberDivisibleByFifteen_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("PingPong", testPingPong.MakePingPong(15));
 }
示例#3
0
 public void MakePingPong_NumberDivisibleByThree_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("Ping", testPingPong.MakePingPong(3));
 }