Skip to content

Instantly share code, notes, and snippets.

@Hameds
Created November 2, 2017 10:54
Show Gist options
  • Save Hameds/b3e5420924c1139dbf1c39cf83053585 to your computer and use it in GitHub Desktop.
Save Hameds/b3e5420924c1139dbf1c39cf83053585 to your computer and use it in GitHub Desktop.
[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