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