-
Notifications
You must be signed in to change notification settings - Fork 940
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Automatically enable MockitoExtension in JUnit 5 tests. #1811
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1811 +/- ##
============================================
- Coverage 73.24% 73.21% -0.03%
+ Complexity 8743 8739 -4
============================================
Files 776 776
Lines 34175 34175
Branches 4198 4198
============================================
- Hits 25030 25020 -10
- Misses 7011 7021 +10
Partials 2134 2134
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very nice. Learned a new trick :-)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
We commonly use Mockito in tests so it should make sense to always have it enabled for JUnit 5 tests. This change ensures it's always as easy (or easier) to write a JUnit 5 test as JUnit 4 in the codebase. Migrated one test to demonstrate it works. This extension defaults to Mockito's strict stubs setting - `@MockitoSettings` can be applied to disable this, but Mockito seems to strongly recommend this and is going to default it in Mockito 3 because it removes the needs to set stubs, then verify them - verification happens automatically with the strict stubs setting.
We commonly use mockito in tests so it should make sense to always have it enabled for junit5 tests. This change ensures it's always as easy (or easier) to write a junit5 test as junit4 in the codebase.
Migrated one test to demonstrate it works.
This extension defaults to mockito's strict stubs setting -
@MockitoSettings
can be applied to disable this. But Mockito seems to strongly recommend this and is going to default it in mockito 3 because it removes the needs to set stubs, then verify them - verification happens automatically with the strict stubs setting.