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

            Assert.AreEqual(true, testPingPong.IsPong(12));
        }
コード例 #2
0
        public void IsPingPong_NumberDivisibleByFive_True()
        {
            PingPong testPingPong = new PingPong();

            Assert.AreEqual("pong", testPingPong.IsPong(15));
        }