Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a newbie to unit testing and Junit. I know the basics of Junit. I just started learing about EasyMock framework.

I couldn't understand the use of replay() method.

Could anyone please provide some info?

I understand the user of EasyMock.expect() and EasyMock.verify().

share|improve this question
1  
Looks like user753739's answer helped you, so click the accept check to reward him. – Chris May 17 '11 at 7:22

2 Answers

The replay method is used to pass the mock from recording (where you record the method you expect to be called) to replaying state (where you actually test).

share|improve this answer
1  
Thanks for the response user753739. method name should have been named as 'play' or something like that instead or 'replay'. the word 'replay' is confusing in this context. – Surez May 15 '11 at 13:34

From what I read here, I reckon that if the mock does not have a specific behavior for a method call (use the default implementation) then one does not need to invoked EasyMock.replay?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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