Skip to content
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

Merged
merged 2 commits into from
Jun 7, 2019

Conversation

anuraaga
Copy link
Collaborator

@anuraaga anuraaga commented Jun 4, 2019

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.

@codecov
Copy link

codecov bot commented Jun 4, 2019

Codecov Report

Merging #1811 into master will decrease coverage by 0.02%.
The diff coverage is n/a.

Impacted file tree graph

@@             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
Impacted Files Coverage Δ Complexity Δ
...meria/common/stream/RegularFixedStreamMessage.java 81.63% <0%> (-6.13%) 13% <0%> (-1%)
...lient/circuitbreaker/CircuitBreakerHttpClient.java 69.69% <0%> (-3.04%) 10% <0%> (-1%)
...com/linecorp/armeria/server/saml/SamlEndpoint.java 62.5% <0%> (-2.5%) 10% <0%> (-1%)
...om/linecorp/armeria/client/HttpSessionHandler.java 59.48% <0%> (-1.73%) 28% <0%> (-1%)
...inecorp/armeria/server/grpc/ArmeriaServerCall.java 86.16% <0%> (-1.59%) 81% <0%> (-1%)
...a/common/grpc/protocol/ArmeriaMessageDeframer.java 70.81% <0%> (-0.96%) 47% <0%> (-1%)
...inecorp/armeria/server/HttpResponseSubscriber.java 84.43% <0%> (+0.47%) 65% <0%> (+1%) ⬆️
.../linecorp/armeria/internal/IdleTimeoutHandler.java 100% <0%> (+20%) 5% <0%> (+1%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update f0fb61a...3f5e404. Read the comment docs.

@trustin trustin added the cleanup label Jun 5, 2019
@trustin trustin added this to the 0.87.0 milestone Jun 5, 2019
Copy link
Member

@trustin trustin left a 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 :-)

Copy link
Contributor

@hyangtack hyangtack left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@trustin trustin removed the request for review from minwoox June 7, 2019 07:10
@trustin trustin changed the title Automatically enable MockitoExtension in junit5 tests. Automatically enable MockitoExtension in JUnit 5 tests. Jun 7, 2019
@trustin trustin merged commit 0a0767f into line:master Jun 7, 2019
fmguerreiro pushed a commit to fmguerreiro/armeria that referenced this pull request Sep 19, 2020
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.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants