I have Spring Integration test where I'm trying to Mock some of my Beans. For some reason although I Mocked them they are NULL. Here is code snippet:
The Bean which I want to Mock
@Component
public class MockWS {
    public String callSoapClient() throws JAXBException{
        return "CallSoapCl";
    }
}
The class where the Bean is used
public class SmDpES2PortImpl implements ES2SmDp {
    @Autowired
    private MockWS mock;
    @Override
    public void es2DownloadProfile(ES2DownloadProfileRequest parameters) {
         try {
            LOG.info("\n\n\n TEST BEAN: " + mock.callSoapClient() + "\n\n");
          }
     }  
}
Spring boot integration test where the Bean has been mocked
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = WebEnvironment.DEFINED_PORT)
@FixMethodOrder(MethodSorters.NAME_ASCENDING)
public class ES2SmDpApplicationTests {
    @MockBean(name="mockWS")
    MockWS mockService;
    @Test
    public void test1Es2DownloadProfile_Sucess() throws MalformedURLException, JAXBException, SOAPException {
        when(mockService.callSoapClient()).thenReturn("CallMockCLient");
    }
}
Output from the build execution: TEST BEAN: null
 
     
    