Created
July 1, 2018 02:32
-
-
Save joebuschmann/0afa3f7ec949d2daffcc15a9719633cd 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
[When(@"I remove the (.*) product")] | |
public void RemoveProduct(string position) | |
{ | |
// Position comes in as 1st, 2nd, 3rd, etc. | |
int index = ParsePosition(position); | |
// Snip | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment