Skip to content

Instantly share code, notes, and snippets.

@marzoukali
Created July 1, 2017 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marzoukali/d6ae95370db8cbfaca400f2ee74d301b to your computer and use it in GitHub Desktop.
Save marzoukali/d6ae95370db8cbfaca400f2ee74d301b to your computer and use it in GitHub Desktop.
unittest-example-4
[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