This question may have been asked before but I have very specific things that I am looking for. I would like to integrate unit testing into a legacy web application but to do this and make sure that my unit tests are truly repeatable and decoupled from data access code I need a good Mock Framework that supports the following conditions.
I would prefer to just use a single framework that has all of the following features although if no such framework exists then so be it. My frustration stems not from lack of choices but from too many it seems.
- Mock Instance methods
- Mock Static methods
- Mock return value of method
- Mock exception thrown
- Order of mocked method calls (Nice to have)
- Expected results vs. Actual Results (Nice to have)
Does anybody have any suggestions for Java mock frameworks that fit this criteria?