Created
July 1, 2017 16:50
-
-
Save marzoukali/d6ae95370db8cbfaca400f2ee74d301b to your computer and use it in GitHub Desktop.
unittest-example-4
This file contains 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] | |
public class PrintInvoiceCommandTestsWithAutoMoqer | |
{ | |
private PrintInvoiceCommand _command; | |
private AutoMoqer _mocker; | |
private Invoice _invoice; | |
private const int InvoiceId = 1; | |
private const decimal Total = 4.50m; | |
private static readonly DateTime Date = new DateTime(2001, 2, 3); | |
[SetUp] | |
public void SetUp() | |
{ | |
_invoice = new Invoice() | |
{ | |
Id = InvoiceId, | |
Total = Total | |
}; | |
_mocker = new AutoMoqer(); | |
_mocker.GetMock<IDatabase>() | |
.Setup(p => p.GetInvoice(InvoiceId)) | |
.Returns(_invoice); | |
_mocker.GetMock<IDateTimeWrapper>() | |
.Setup(p => p.GetNow()) | |
.Returns(Date); | |
_command = _mocker.Create<PrintInvoiceCommand>(); | |
} | |
[Test] | |
[TestCase("Invoice ID: 1")] | |
[TestCase("Total: $4.50")] | |
[TestCase("Printed: 2/3/2001")] | |
public void TestExecuteShouldPrintLine(string line) | |
{ | |
_command.Execute(InvoiceId); | |
_mocker.GetMock<IPrinter>() | |
.Verify(p => p.WriteLine(line), | |
Times.Once); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment