Exemplo n.º 1
0
        public void TestDisminuirTemperatura()
        {
            Assert.AreEqual(20, weatherStation.Temperature);

            weatherStation.DecreaseTheTemperatureInDegrees(1);
            Assert.AreEqual(19, weatherStation.Temperature);

            weatherStation.DecreaseTheTemperatureInDegrees(23);
            Assert.AreEqual(-4, weatherStation.Temperature);
        }