Created
November 2, 2017 09:54
-
-
Save Hameds/e434d112eea6a6cba113eb106f5dc056 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 WhenUserPlacesACorrectOrderThenAnOrderNumberShouldBeReturned() | |
| { | |
| //Arrange | |
| var shoppingCart = new ShoppingCart(); | |
| shoppingCart.Items.Add(new ShoppingCartItem { ItemId = Guid.NewGuid(), Quantity = 1 }); | |
| var customerId = Guid.NewGuid(); | |
| var expectedOrderId = Guid.NewGuid(); | |
| var orderService = new OrderService(); | |
| //Act | |
| var result = orderService.PlaceOrder(customerId, shoppingCart); | |
| //Assert | |
| Assert.AreEqual(expectedOrderId, result); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment