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."); }
public void AmenityControllerConstructorTest() { AmenityController target = new AmenityController(); Assert.Inconclusive("TODO: Implement code to verify target"); }
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."); }