diff --git a/src/test/java/org/openrewrite/java/testing/mockito/Mockito1to5MigrationTest.java b/src/test/java/org/openrewrite/java/testing/mockito/Mockito1to5MigrationTest.java new file mode 100644 index 000000000..de4741301 --- /dev/null +++ b/src/test/java/org/openrewrite/java/testing/mockito/Mockito1to5MigrationTest.java @@ -0,0 +1,109 @@ +/* + * Copyright 2024 the original author or authors. + *
+ * Licensed under the Moderne Source Available License (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *
+ * https://docs.moderne.io/licensing/moderne-source-available-license + *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.openrewrite.java.testing.mockito;
+
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+import org.junit.jupiter.api.Test;
+import org.openrewrite.DocumentExample;
+import org.openrewrite.InMemoryExecutionContext;
+import org.openrewrite.java.JavaParser;
+import org.openrewrite.test.RecipeSpec;
+import org.openrewrite.test.RewriteTest;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.openrewrite.gradle.Assertions.buildGradle;
+import static org.openrewrite.gradle.toolingapi.Assertions.withToolingApi;
+import static org.openrewrite.java.Assertions.java;
+
+
+class Mockito1to5MigrationTest implements RewriteTest {
+
+ @Override
+ public void defaults(RecipeSpec spec) {
+ spec
+ .beforeRecipe(withToolingApi())
+ .parser(JavaParser.fromJavaVersion()
+ .classpathFromResources(new InMemoryExecutionContext(), "junit-jupiter-api", "mockito-core", "mockito-junit-jupiter"))
+ .recipeFromResources("org.openrewrite.java.testing.mockito.Mockito1to5Migration");
+ }
+
+ @DocumentExample
+ @Test
+ void modifyMockitoDependencies() {
+ rewriteRun(
+ //language=groovy
+ buildGradle(
+ """
+ plugins {
+ id 'java-library'
+ }
+ repositories {
+ mavenCentral()
+ }
+ dependencies {
+ implementation("org.apache.commons:commons-lang3:3.17.0")
+ testImplementation("org.junit.jupiter:junit-jupiter-api:5.11.4")
+ testImplementation("org.mockito:mockito-core:3.12.4")
+ testImplementation("org.mockito:mockito-junit-jupiter:3.12.4")
+ }
+ test {
+ useJUnitPlatform()
+ }
+ """,
+ spec -> spec.after(buildGradleAfter -> {
+ Matcher artifactMatcher = Pattern.compile("org\\.mockito:[\\D]+:(?