public void SetBuryGetIsBuried_GetsSetsBuried_True()
        {
            TamagotchiPet pet = new TamagotchiPet("Tan");

            pet.Bury();
            Assert.AreEqual(true, pet.IsBuried());
        }