Example #1
0
        public void PingPong_NumberDivisibleByFive_ping()
        {
            PingPongClass testPingPong = new PingPongClass();

            Assert.AreEqual("pong", testPingPong.CheckNumber(10));
        }
Example #2
0
 public void PingPong_NumberDivisibleByThree_ping()
 {
     // PingPongClass testPingPong = new PingPongClass();
     Assert.AreEqual("ping", PingPongClass.CheckNumber(6));
 }