-
## What version of OpenRewrite are you using?
I am using IntelliJ IDEA OpenRewrite feature, guess it's latest version? It didn't print the version :(
## How are you running OpenRewrite?
with …
-
## What problem are you trying to solve?
A Jmockit Verification eg:
```
new Verifications() {{
myObject.wait(anyLong);
}};
```
Should be migrated to in Mockito:
```
verify(myObject, atLea…
-
[JSpecify - What is this](https://jspecify.dev/docs/start-here/#what-is-this)
[org.jspecify.annotations.Nullable](https://jspecify.dev/docs/api/org/jspecify/annotations/Nullable.html)
```shell
…
-
[TestsShouldNotBePublic](https://github.com/openrewrite/rewrite-testing-frameworks/blob/v1.33.0/src/main/java/org/openrewrite/java/testing/cleanup/TestsShouldNotBePublic.java) should not reduce visibi…
-
Hi! Noticed a somewhat surprising pattern after migrating from JUnit 4 to JUnit 5, which is [captured in the unit test `assertThrowsMultiLine`](https://github.com/openrewrite/rewrite-testing-framework…
-
## What problem are you trying to solve?
I have run the Open Rewrite junit 4 to 5 recipe on our codebase. What I'm noticing is with the assertThrows is it wraps the entire method into a lambda for as…
-
Background
Datatables is a new openrewrite structure to produce tabular content. However, this is not consumable outside of the Moderne SaaS. This creates confusion in the community when they try t…
rpau updated
3 months ago
-
I ran the `org.openrewrite.java.spring.boot2.SpringBoot1To2Migration` recipe and it added these two dependencies to the **pom.xml** file, which isn't needed when using Spring Boot 2.2 (I believe) or l…
-
test case:
```java
@Test
void releaseVersion() {
rewriteRun(
pomXml("""
4.0.0
…
-
## What problem are you trying to solve?
Having a simple method migration recipe such as this:
```java
@BeforeTemplate void before(double actual, double expected, double delta, String m…