コード例 #1
0
ファイル: PingTest.cs プロジェクト: KNBAnderson/Ping-Pong-
 public void MakePingPong_NumberNotDivisibleByThreeOrFive_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("7", testPingPong.MakePingPong(7));
 }
コード例 #2
0
ファイル: PingTest.cs プロジェクト: KNBAnderson/Ping-Pong-
 public void MakePingPong_NumberDivisibleByFifteen_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("PingPong", testPingPong.MakePingPong(15));
 }
コード例 #3
0
ファイル: PingTest.cs プロジェクト: KNBAnderson/Ping-Pong-
 public void MakePingPong_NumberDivisibleByThree_True()
 {
   PingPong testPingPong = new PingPong();
   Assert.AreEqual("Ping", testPingPong.MakePingPong(3));
 }