Created
September 8, 2023 11:24
-
-
Save stijnmoreels/dac58374dfba6021206f184d28ca6fda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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