Easymock vs Mockito: Design vs Maintainability?
Posted
by RAbraham
on Stack Overflow
See other posts from Stack Overflow
or by RAbraham
Published on 2010-05-19T10:50:38Z
Indexed on
2010/05/20
8:50 UTC
Read the original article
Hit count: 310
One way of thinking about this is: if we care about the Design of the code then Easymock is the better choice as it gives feedback to you by its concept of expectations If we care about the maintainability of tests( easier to read,write and having less brittle tests which are not affected much by change), then Mockito seems a better choice.
My question is: - If you have used Easymock in large scale projects, do you find that your tests are harder to maintain? - What are the limitations of Mockito( other than endo testing)
© Stack Overflow or respective owner