GetRateAPIByAmenityID() public method

public GetRateAPIByAmenityID ( int id ) : RateAPI
id int
return RateMyAmenity.ViewModels.RateAPI
 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.");
 }