Ejemplo n.º 1
0
 public void CreateSiteTest()
 {
     ISitesService service = null; // TODO: Initialize to an appropriate value
     HomeController target = new HomeController(service); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.CreateSite();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void IndexTest()
 {
     ISitesService service = null; // TODO: Initialize to an appropriate value
     HomeController target = new HomeController(service); // TODO: Initialize to an appropriate value
     string icode = string.Empty; // TODO: Initialize to an appropriate value
     target.Index(icode);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Ejemplo n.º 3
0
 public void HomeControllerConstructorTest()
 {
     ISitesService service = null; // TODO: Initialize to an appropriate value
     HomeController target = new HomeController(service);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }