Example #1
0
        public void LoginTestMethod()
        {
            OnlineUser user = new OnlineUser(null);

            try
            {
                user.Login("");
                bool   a = user.IsLogin;
                string v = user.img;
                string c = user.name;


                Assert.Fail("토큰이 없지만 로그인 실패 메세지 없음");
            }
            catch (Exception e)
            {
            }
        }