I'm migrating a project from Spring Boot 3, to 4.0.0.M3 with an existing test class using `@WebMvc` which has an Mockito argument captor as: ```java @Captor ArgumentCaptor<UUID> uuidArgumentCaptor; ``` Under Spring Boot 4, the captor is not initialized. Work around is to annotate the test class with `@ExtendWith(MockitoExtension.class)` Unexpected behavior, not sure if this is a bug, or intentional change? Example [here](https://github.com/springframeworkguru/spring-6-rest-mvc/blob/sb-issue-with-argument-captor/src/test/java/guru/springframework/spring6restmvc/controller/CustomerControllerTest.java)