예제 #1
0
        public void TestCodeExistFalse()
        {
            GameJoin gj     = new GameJoin();
            bool     result = gj.CheckIfCodeExist("FFJDKS46546");

            Assert.AreEqual(false, result);
        }
예제 #2
0
        public void TestCodeExistTrue()
        {
            GameJoin gj     = new GameJoin();
            bool     result = gj.CheckIfCodeExist("54654646");

            Assert.AreEqual(true, result);
        }