Having this code:
private ConsultaCiudadanoStub clienteConsultaCiudadanoWS;
clienteGestionColectivosWS = new GestionColectivosWsStub();
clienteGestionColectivosWS._getServiceClient().getOptions().setTo(new org.apache.axis2.addressing.EndpointReference(Inicializacion.getUrlWsGestionColectivos()));
How can I mock a call to clientGestionColectivosWS, being this an external web service, with Mockito in a test with Java?