when(mockSFHandler.getBulkConnection(user, password)).thenReturn(null);
JobInfo info = new JobInfo();
String id = "id";
info.setId(id);
when(mockSFHandler.createJob(sObject, null)).thenReturn(info);
ExportSalesforceMapper mapper = new ExportSalesforceMapper();
mapper.setSfHandler(mockSFHandler);
mapper.setup(context);
verify(context, times(3)).getConfiguration();