Using Mockito version 4.8.0
The controller method I need to test
 @GetMapping(value = "getStringBuiltByComplexProcess")
 public String getStringBuiltByComplexProcess(@RequestParam String firstName, @RequestParam String lastName ) {
  Author a = new Author();
  return a.methodWhichMakesNetworkAndDatabaseCalls(firstName, lastName);
 }
here is the test method
 @Test
 public void testGetStringBuiltByComplexProcess01() {
  final String firstName = "firstName";
  final String lastName = "lastName";
  try (MockedConstruction<Author> mock = mockConstruction(Author.class)) {
   Author authorMock = new Author();
   when(authorMock.methodWhichMakesNetworkAndDatabaseCalls(eq(firstName), eq(lastName))).thenReturn("when worked");
   assertEquals("when worked", ut.getStringBuiltByComplexProcess(firstName, lastName),  "Strings should match");
   verify(authorMock).methodWhichMakesNetworkAndDatabaseCalls(eq(firstName), eq(lastName));
  }
 }
fails with a message of
org.opentest4j.AssertionFailedError: strings should match ==> expected: <when worked> but was: <null>
In this simplified example the controller method has more code but the core of what is not working is mocking the object which the controller method constructs.
 
     
    