public void testSubmitFailingCallableException_withExecutionCallback() throws ExecutionException, InterruptedException {
TestHazelcastInstanceFactory factory = createHazelcastInstanceFactory(1);
HazelcastInstance instance = factory.newHazelcastInstance();
IExecutorService service = instance.getExecutorService(randomString());
final CountDownLatch latch = new CountDownLatch(1);
service.submit(new FailingTestTask(), new ExecutionCallback<String>() {
@Override
public void onResponse(String response) {
}
@Override