Created
July 1, 2018 02:26
-
-
Save joebuschmann/39649b8c20ae6a797fcbd44e8b867d08 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
| [Given("a new customer and address")] | |
| public void GivenANewCustomerAndAddress() | |
| { | |
| Customer customer = new Customer | |
| { | |
| Salutation = "Miss", | |
| FirstName = "Liz", | |
| LastName = "Lemon" | |
| }; | |
| Address address = new Address | |
| { | |
| Line1 = "30 Rockefeller Plaza", | |
| City = "New York", | |
| State = "NY", | |
| Zipcode = "10112" | |
| }; | |
| _otherBindings.GivenTheCustomer(customer); | |
| _otherBindings.GivenTheAddress(address); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment