I am using ExecutorCompletionService and below method calls from that
Future<List<Student>> studentDetails = taskCompletionService.take();
Lis<Student> details =studentDetails.get()
Now am writing Junit and Mockito and I want to mock above two calls. How can I achieve that?