Testing / Mockito Interview Questions
Difference between Assert and Verify?
Assert works only if assertions (-ea) are enabled which is not required for Verify. Assert throws an exception and hence doesn't continue with the test if assert evaluates to false whereas it is not so with Verify.
More Related questions...