public void CanInstantiateAnimalShelter()
        {
            shelter.FIFOAnimalShelter();
            bool actual = shelter.CatQ.IsEmpty() && shelter.DogQ.IsEmpty();

            Assert.True(actual);
        }