Exemple #1
0
    public void ChangeLocation_ShouldBeNewLocation()
    {
        string newLocation = "New";
        var    beer        = new Beer();

        beer.Location = "Old";

        beer.ChangeLocation(newLocation);

        beer.Location.ShouldBe(newLocation);
    }