Skip to content

Instantly share code, notes, and snippets.

@darrencauthon
Created July 19, 2011 12:52
Show Gist options
  • Save darrencauthon/1092197 to your computer and use it in GitHub Desktop.
Save darrencauthon/1092197 to your computer and use it in GitHub Desktop.
Simple.Data in SpecFlow example, Gherkin
Scenario: Submit a valid create account form
Given the following accounts exist
| FirstName | LastName | Email |
| Howard | Roark | [email protected] |
When I submit the following Create Account form
| Field | Value |
| FirstName | John |
| LastName | Galt |
| Email | [email protected] |
Then the following accounts should exist
| FirstName | LastName | Email |
| Howard | Roark | [email protected] |
| John | Galt | [email protected] |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment