public void DrinkIncreasesBathroomByFifteen()
        {
            // Arrangement
            VirtualMonster testMonster = new VirtualMonster("Testo");

            //Activation
            testMonster.Drink();

            // Assertion
            Assert.AreEqual(40, testMonster.Bathroom);
        }
        public void DrinkReducesThirstByForty()
        {
            // Arrangement
            VirtualMonster testMonster = new VirtualMonster("Testo");

            //Activation
            testMonster.Drink();

            // Assertion
            Assert.AreEqual(10, testMonster.Thirst);
        }