예제 #1
0
        public void PinConstructor2()
        {
            //Arrange
            _foodPin = new FoodAndWaterPin(1.0, 1.0);

            //Act
            var    Resource    = _foodPin.Resource;
            var    Lat         = _foodPin.Location.Latitude;
            var    Lon         = _foodPin.Location.Longitude;
            double Available   = _foodPin.Availability;
            var    expectedLat = 1.0;
            var    expectedLon = 1.0;

            //Assert
            Assert.AreEqual(RName, Resource);
            Assert.AreEqual(expectedLat, Lat);
            Assert.AreEqual(expectedLon, Lon);
            Assert.AreEqual(0.0, Available);
        }
예제 #2
0
 public void SetupBeforeEachTest() => _foodPin = new FoodAndWaterPin();