Say if i had the following interface mocked in (NMock). How could i check that email.Subject = 'xyz' ?

Currently im doing something like

IEmailService s = mocks.NewMock<IEmailService>();
Expect.Once.On(s).Method("Send").With(?????)

s.Send(new Email { Subject = 'rarr' });

mocks.Verify...();

interface EmailService { void SendEmail(Email email); }
link|improve this question

53% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can use a Has.Property matcher like this:

IEmailService s = mocks.NewMock<IEmailService>();

Expect.Once.On(s).Method("Send").
    With(Has.Property("Subject", Is.EqualTo("rarr")));

s.Send(new Email { Subject = 'rarr' });
mocks.Verify...();

Or you could write a custom matcher to verify that the argument is of the type Email and that its Subject property has the correct value.

link|improve this answer
feedback

Do you want to check Subject inside With? That's weird to me as you are authoring unit test cases, so there is no need to validate your own test case in this way, right?

link|improve this answer
I was actually doing an integration test. But i wanted to make sure that the object calling Send() was passing in the correct parameters. – mrwayne Nov 1 '09 at 21:55
Not sure if that's doable with NMock. Consider its own support page, nmock.org/support.html – Lex Li Nov 2 '09 at 2:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.