I want to test certain underlying services using PowerMock, but it is complicated.
I would like to get your suggestion
public interface Service{
public void someMethod(){
}
}
public ServiceClient implements Service {
...
}
public MyServiceClient {
public Service getService(){
return service;
}
}
I have written a ServiceUtil which uses MyServiceClient to call and gets the services.
public class ServiceUtil {
private static service s = MyServiceClient.getService();
public void updateService(){
// do some thing with service
}
}
Now I want to test ServiceUtil method - updateService. How do I do it?