use of org.eol.globi.data.StudyImporterForMetaTable in project eol-globi-data by jhpoelen.
the class GitHubImporterFactoryIT method createMetaTableREEM.
@Test
public void createMetaTableREEM() throws StudyImporterException, DatasetFinderException {
final DatasetFinderGitHubRemote datasetFinderGitHubRemote = new DatasetFinderGitHubRemote();
StudyImporter importer = importerFor(datasetFinderGitHubRemote, "globalbioticinteractions/noaa-reem");
assertThat(importer, is(notNullValue()));
assertThat(importer, is(instanceOf(StudyImporterForMetaTable.class)));
final JsonNode config = ((StudyImporterForMetaTable) importer).getConfig();
assertThat(config, is(notNullValue()));
}
Aggregations