| Interface | Description |
|---|---|
| MockitoRule |
Mockito JUnit Rule helps keeping tests clean.
|
| VerificationCollector |
Use this rule in order to collect multiple verification failures and report at once.
|
| Class | Description |
|---|---|
| MockitoJUnit |
The JUnit rule can be used instead of
MockitoJUnitRunner. |
| MockitoJUnitRunner |
Mockito JUnit Runner keeps tests clean and improves debugging experience.
|
| MockitoJUnitRunner.Silent |
This Mockito JUnit Runner implementation *ignores*
stubbing argument mismatches (
MockitoJUnitRunner.StrictStubs)
and *does not detect* unused stubbings. |
| MockitoJUnitRunner.Strict |
Detects unused stubs and reports them as failures.
|
| MockitoJUnitRunner.StrictStubs |
Improves debugging tests, helps keeping the tests clean.
|