mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Search for : assertThat\((.+) instanceof (\w+)\)\.isTrue\(\) Replace with : assertThat($1).isInstanceOf($2.class) Search for : assertThat\((.+) instanceof (\w+)\)\.isFalse\(\) Replace with : assertThat($1).isNotInstanceOf($2.class) Closes gh-31760