상속: Controller
예제 #1
0
 public void CreateDBTest()
 {
     AmenityController target = new AmenityController(); // TODO: Initialize to an appropriate value
     ActionResult expected = null; // TODO: Initialize to an appropriate value
     ActionResult actual;
     actual = target.CreateDB();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
예제 #2
0
 public void AmenityControllerConstructorTest()
 {
     AmenityController target = new AmenityController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
예제 #3
0
 public void IndexTest()
 {
     AmenityController target = new AmenityController(); // TODO: Initialize to an appropriate value
     string sortOrder = string.Empty; // TODO: Initialize to an appropriate value
     string searchString = string.Empty; // TODO: Initialize to an appropriate value
     ViewResult expected = null; // TODO: Initialize to an appropriate value
     ViewResult actual;
     actual = target.Index(sortOrder, searchString);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }