What is the best way to test the following static method with a callback
Service.doAction(request, Callback<Response> callback);
I am aware of similar questions around mocking and testing non-static objects and methods but this is specific to static methods. Is there any way to use Powermock with Answers or ArgumentCaptor to achieve this?