Created
August 16, 2020 04:56
-
-
Save Kevin-Bronsdijk/f30365575b979a83274c331590b66b9c 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
[Test] | |
public void Example3_GetProducts_WhenPassingAValidCategory_ThenShouldReturnProducts() | |
{ | |
Given.AConcreteProductCatalogService.WhenBasedOnScenario( | |
Given.AProductCatalogRepository.WhenReturningProductsForCategory("ElectronicDevices")) | |
.When().GetProducts(Category.ElectronicDevices) | |
.Then().Should().NotBeNull().And.HaveCountGreaterThan(0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment