public void ChangePasswordSuccessTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.ChangePasswordSuccess();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void RegisterTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     RegisterModel model = null; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Register(model);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void AccountControllerConstructorTest()
 {
     AccountController target = new AccountController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void LogOnTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     LogOnModel model = null; // TODO: Initialize to an appropriate value
     string returnUrl = string.Empty; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.LogOn(model, returnUrl);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }