GetSkills.Controllers.ManageController.ChangePassword C# (CSharp) Method

ChangePassword() public method

public ChangePassword ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult ChangePassword()
        {
            return View();
        }

Same methods

ManageController::ChangePassword ( GetSkills.Models.ChangePasswordViewModel model ) : Task

Usage Example

Exemplo n.º 1
0
        public void ManageController_ChangePassword_Test01()
        {
            // Initialization
            ManageController ctl = new ManageController();

            // To test if it is null
            var result = ctl.ChangePassword();
            Assert.IsNotNull(result);
        }