public void ExternalLoginFailureTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.ExternalLoginFailure();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ExternalLoginConfirmationTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     RegisterExternalLoginModel 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.ExternalLoginConfirmation(model, returnUrl);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void DisassociateTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     string provider = string.Empty; // TODO: Initialize to an appropriate value
     string providerUserId = string.Empty; // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Disassociate(provider, providerUserId);
     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 RegisterTest1()
 {
     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 ManageTest()
 {
     AccountController target = new AccountController(); // TODO: Initialize to an appropriate value
     Nullable<AccountController.ManageMessageId> message = new Nullable<AccountController.ManageMessageId>(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.Manage(message);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }