Created
November 2, 2017 10:54
-
-
Save Hameds/b3e5420924c1139dbf1c39cf83053585 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
[TestFixtureSetUp] | |
public void SetupTestFixture() | |
{ | |
_orderDataService = Mock.Create(); | |
_customerService = Mock.Create(); | |
_orderFulfillmentService = Mock.Create(); | |
_orderService = new OrderService(_orderDataService, _customerService, _orderFulfillmentService); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment