Ejemplo n.º 1
0
    public void AddToLocation_WhenAdded_EqualsLocationId()
    {
        var    beer       = new Beer();
        string locationId = "Test";

        beer.AddToLocation(locationId);

        beer.Location.ShouldBe(locationId);
    }