Commonly Compared
Review of Mockito powered by the Slant community.
Mockito is a mocking framework that lets you write tests with a clean and simple API.
Ranked in these QuestionsQuestion Ranking
Pros
Pro Simple, clean API
Mockito focuses on having a very simple and clean API to allow ease of use and a simple way to get started. It allows users to use the same techniques when mocking classes or interfaces as there is only one kind of mock and one way of creating mocks.
Pro Large community support
Pro PowerMock extensions solve some difficult edge cases
PowerMock extensions to Mockito allow for testing static methods, etc.
Pro Verification and exceptions are clean and flexible
Users can easily track failed verifications in tests and these exceptions lead the user to the actual point of interaction in the code. The stack trace will always be clean and verification can be flexible in the order it is presented ensuring the most important verifications can be shown first.