InterviewSolution
Saved Bookmarks
| 1. |
Is It Really A Mocking Framework? |
|
Answer» There is a bit of confusion around the vocabulary. Technically speaking, MOCKITO is a TEST Spy FRAMEWORK. Usually developers use Mockito instead of a mocking framework. Test Spy framework allows to verify behaviour (like mocks) and stub METHODS (like good OLD hand-crafted stubs). There is a bit of confusion around the vocabulary. Technically speaking, Mockito is a Test Spy framework. Usually developers use Mockito instead of a mocking framework. Test Spy framework allows to verify behaviour (like mocks) and stub methods (like good old hand-crafted stubs). |
|