Inheritance: ApiController
Ejemplo n.º 1
0
 public void GetAllRateAPIsTest()
 {
     RateAPIController target = new RateAPIController(); // TODO: Initialize to an appropriate value
     IEnumerable<RateAPI> expected = null; // TODO: Initialize to an appropriate value
     IEnumerable<RateAPI> actual;
     actual = target.GetAllRateAPIs();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void GetRateAPIByAmenityIDTest()
 {
     RateAPIController target = new RateAPIController(); // TODO: Initialize to an appropriate value
     int id = 0; // TODO: Initialize to an appropriate value
     RateAPI expected = null; // TODO: Initialize to an appropriate value
     RateAPI actual;
     actual = target.GetRateAPIByAmenityID(id);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 3
0
 public void RateAPIControllerConstructorTest()
 {
     RateAPIController target = new RateAPIController();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }