public void GetSpecies_Should_Get_Pet_Species_Value() { testPet.SetSpecies("Dog"); string testPetSpecies = testPet.GetSpecies(); Assert.Equal("Dog", testPetSpecies); }
public void SetSpecies_Should_Assign_Pet_Species_Property() { testPet.SetSpecies("Cat"); Assert.Equal("Cat", testPet.GetSpecies()); }