// submit a callable that will only use the mock 'iMethods'
executorService.submit(new Callable<Object>() {
public Object call() throws Exception {
barrier_that_will_wait_until_threads_are_ready.await();
return iMethods_that_store_invocations.longObjectReturningMethod();
}
});
}
// ensure we are getting the futures