File tree Expand file tree Collapse file tree
src/main/java/org/openrewrite/java/testing/mockito Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public class RemoveInitMocksIfRunnersSpecified extends Recipe {
5353 private static final MethodMatcher INIT_MOCKS_MATCHER = new MethodMatcher ("org.mockito.MockitoAnnotations initMocks(..)" , false );
5454 private static final MethodMatcher OPEN_MOCKS_MATCHER = new MethodMatcher ("org.mockito.MockitoAnnotations openMocks(..)" , false );
5555 private static final MethodMatcher CLOSEABLE_MATCHER = new MethodMatcher ("java.lang.AutoCloseable close()" , false );
56- private static List <AnnotationMatcher > BEFORE_AND_AFTER_MATCHERS = Arrays .asList (
56+ private static final List <AnnotationMatcher > BEFORE_AND_AFTER_MATCHERS = Arrays .asList (
5757 new AnnotationMatcher ("@org.junit.jupiter.api.BeforeAll" ),
5858 new AnnotationMatcher ("@org.junit.jupiter.api.BeforeEach" ),
5959 new AnnotationMatcher ("@org.junit.BeforeClass" ),
You can’t perform that action at this time.
0 commit comments