ConfirmEmail() 개인적인 메소드

private ConfirmEmail ( string userId, string code ) : Task
userId string
code string
리턴 Task
예제 #1
0
        public void AccountController_ConfirmEmail_Test()
        {
            // Initialization
            AccountController ctl = new AccountController();
            string id = "0";
            string code = "888888";

            // To test if it is null
            var result = ctl.ConfirmEmail(id, code);
            Assert.IsNotNull(result);
        }