예제 #1
0
        public void CheckNumber_CreateInstanceOfCheckPingPong_CheckPingPong()
        {
            CheckPingPong newPingPong = new CheckPingPong("1");

            Assert.AreEqual(typeof(CheckPingPong), newPingPong.GetType());
        }
예제 #2
0
        public void CheckNumber_UserInputIsDivisibleBy3and5_True()
        {
            CheckPingPong newPingPong = new CheckPingPong("15");

            Assert.AreEqual(true, newPingPong.CheckNumber("15"));
        }