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

            // Activation
            testMonster.Eat();

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

            // Activation
            testMonster.Eat();

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