public void GetBoredom_Should_Return_Initial_Boredom_Level_Of_60()
        {
            int testPetBoredom = testOrganicPet.GetBoredom();

            Assert.Equal(60, testPetBoredom);
        }
        public void Play_Should_Decrease_Boredom_By_10()
        {
            testOPet.Play();

            Assert.Equal(40, testOPet.GetBoredom());
        }