public void ApplicationControllerConstructorTest()
 {
     IIdStore idStore = null; // TODO: Initialize to an appropriate value
     ILogger logger = null; // TODO: Initialize to an appropriate value
     ApplicationController target = new ApplicationController(idStore, logger);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void CurrentUserTest()
 {
     ApplicationController target = new ApplicationController(); // TODO: Initialize to an appropriate value
     object actual;
     actual = target.CurrentUser;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ApplicationControllerConstructorTest1()
 {
     ApplicationController target = new ApplicationController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void IsLoggedInTest()
 {
     ApplicationController target = new ApplicationController(); // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.IsLoggedIn;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }