Use mockito-inline instead of mockito-core where applicable#923
Merged
Use mockito-inline instead of mockito-core where applicable#923
Conversation
PowerMock features (static mocking, constructor mocking, final class mocking) require the inline mock maker, which is only bundled in mockito-inline for Mockito 3.x/4.x. Using mockito-core alone causes runtime failures when the migrated code calls Mockito.mockStatic().
…ine (#1934) Replace hardcoded mockito-inline dependency with a ScanningRecipe that detects mockStatic(), whenNew(), or @PrepareForTest usage and selects mockito-inline only when needed, falling back to mockito-core otherwise.
src/main/java/org/openrewrite/java/testing/mockito/ReplacePowerMockDependencies.java
Show resolved
Hide resolved
steve-aom-elliott
approved these changes
Mar 2, 2026
timtebeek
reviewed
Mar 2, 2026
src/main/java/org/openrewrite/java/testing/mockito/ReplacePowerMockDependencies.java
Outdated
Show resolved
Hide resolved
Use Map<JavaProject, Boolean> in the accumulator so each sub-module gets mockito-inline or mockito-core based on its own usage patterns.
timtebeek
approved these changes
Mar 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes the
ReplacePowerMockitorecipe to replace PowerMock dependencies withmockito-inlineinstead ofmockito-corefor Mockito 3.x/4.xPowerMock features (static mocking, constructor mocking, final class mocking) require the inline mock maker, which is only bundled in
mockito-inlinefor Mockito 3.x/4.x —mockito-corealone causes runtime failuresCloses https://github.com/moderneinc/customer-requests/issues/1934
Mockito 5.x
Mockito 5.x makes
mockito-inlineobsolete. All you need with that version forward ismockito-core. This has already been covered in the org.openrewrite.java.testing.mockito.Mockito4to5Only recipe.