Esempio n. 1
0
        public void TestAumentarPresion()
        {
            Assert.AreEqual(100, weatherStation.Pressure);

            weatherStation.IncreaseThePreasureInBar(1);
            Assert.AreEqual(101, weatherStation.Pressure);

            weatherStation.IncreaseThePreasureInBar(10);
            Assert.AreEqual(111, weatherStation.Pressure);
        }