@Test
 public void isDownloadDirectoryAccessible() {
   ImporterConfig importerConfig = createMock(ImporterConfig.class);
   expect(importerConfig.isGeonamesDownloadDirectoryAccessible()).andReturn(true);
   replay(importerConfig);
   ImportConfirmAction action = new ImportConfirmAction();
   action.setImporterConfig(importerConfig);
   action.isDownloadDirectoryAccessible();
   EasyMock.verify(importerConfig);
 }