Beispiel #1
0
        public void Feed_Should_Increase_OilLevel_By_20()
        {
            testRPet.Feed();

            Assert.Equal(70, testRPet.GetOilLevel());
        }
        public void Feed_Should_Decrease_Battery_By_40()
        {
            testRoboticPet.Feed();

            Assert.Equal(10, testRoboticPet.GetBattery());
        }