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

I was thinking, is it possible to mock whole object behavior with EasyMock, but in a way that once declared mock with all expected values and results is used several times without caring about the order of the requests ?

The purpose for this is to create an instance of mock for example in JUnit test @BeforeClass and use it in several @Test methods.

Thank you in advance for any input,

Regards, P.

share|improve this question

2 Answers

up vote 2 down vote accepted

If you are not interested in verifying calls to the mock, and your only aim is to ensure that whenever a specific method on the mock is called, it will always return the same desired result, you can configure it using andStubReturn(), e.g.

expect(mock.getMeaningOfLifeUniverseAndEverything()).andStubReturn(42);
share|improve this answer
Exacly what I needed, I appreciate it a lot. Up! – redbull Jan 13 '11 at 9:10

I think you're really wanting two things:

  1. The ability to use mocked methods out of order, which is the default easymock (non-strict mode),
  2. The ability to use mocked methods any number of times.

You do the latter like this:

expect(someMock.someMethod()).anyTimes().andReturn(someValue);

If your method will get different arguments each time it is called, you can use the anyObject() method to ignore the provided argument.

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.