コード例 #1
0
 public void AmenityIDTest()
 {
     JsonAmenity target = new JsonAmenity(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.AmenityID = expected;
     actual = target.AmenityID;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #2
0
 public void DescriptionTest()
 {
     JsonAmenity target = new JsonAmenity(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Description = expected;
     actual = target.Description;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
コード例 #3
0
 public void JsonAmenityConstructorTest()
 {
     JsonAmenity target = new JsonAmenity();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
コード例 #4
0
 public void LongitudeTest()
 {
     JsonAmenity target = new JsonAmenity(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     target.Longitude = expected;
     actual = target.Longitude;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }