コード例 #1
0
        public void PingPongGenerator_DIVISIBLEby3and5()
        {
            PingPong testPingPong = new PingPong();

            Assert.AreEqual("ping-pong", testPingPong.PingPongGenerator(15));
        }
コード例 #2
0
        public void PingPongGenerator_NOTDIVISIBLE()
        {
            PingPong testPingPong = new PingPong();

            Assert.AreEqual("4", testPingPong.PingPongGenerator(4));
        }