I'm new to RhinoMock's just been doing state unit testing up till now.

How do you test void functions?

Getting the following complie error when setting up expectation,

Expression does not produce a value

Basically I want to test that a certain mock's method is called a certain amount of times.

Cheers

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You want to use LastCall.

http://ayende.com/projects/rhino-mocks/api/files/LastCall-cs.html

link|improve this answer
feedback

Better yet, you can use the Expect.Call method with a lambda:

Expect.Call(() => someVoidFunction());
link|improve this answer
Unfortunately this project is pre 3.5. I will try this out in other projects though cheers – c00ke Feb 17 '09 at 12:26
feedback

Your Answer

 
or
required, but never shown

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