示例#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"));
        }