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

Is it possible? How do I do it?

share|improve this question

4 Answers

up vote 8 down vote accepted

See the EasyMock Class Extension documentation and download it from the SourceForge project. You can't mock final methods though.

share|improve this answer

Powermock extends EasyMock and allows you to mock concrete types, even final and static methods.

PowerMock is a framework that extend other mock libraries such as EasyMock with more powerful capabilities. PowerMock uses a custom classloader and bytecode manipulation to enable mocking of static methods, constructors, final classes and methods, private methods, removal of static initializers and more.

share|improve this answer

EasyMock class extensions have been integrated into EasyMock as of v3.0; see the release notes.

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.