Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save stijnmoreels/dac58374dfba6021206f184d28ca6fda to your computer and use it in GitHub Desktop.

Select an option

Save stijnmoreels/dac58374dfba6021206f184d28ca6fda to your computer and use it in GitHub Desktop.
[Fact]
public void Potato_InSandySoilWithFrequentWatering_Grows()
{
var context = PlantTestContext.GivenPotato();
context.WhenSoil(SoilType.Sandy);
context.WhenWaterFrequency(TimeSpan.FromDays(1));
context.ShouldGrow();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment