Beispiel #1
0
        public void TestAumentarHumedad()
        {
            Assert.AreEqual(50, weatherStation.Humidity);

            weatherStation.IncreaseHumidityInPercentage(1);
            Assert.AreEqual(51, weatherStation.Humidity);

            weatherStation.IncreaseHumidityInPercentage(10);
            Assert.AreEqual(61, weatherStation.Humidity);
        }