Ejemplo n.º 1
0
        public void PingPongGenerator_DIVISIBLEby3and5()
        {
            PingPong testPingPong = new PingPong();

            Assert.AreEqual("ping-pong", testPingPong.PingPongGenerator(15));
        }
Ejemplo n.º 2
0
        public void PingPongGenerator_NOTDIVISIBLE()
        {
            PingPong testPingPong = new PingPong();

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