public void AddToLocation_WhenAdded_EqualsLocationId() { var beer = new Beer(); string locationId = "Test"; beer.AddToLocation(locationId); beer.Location.ShouldBe(locationId); }