use of org.eol.globi.data.StudyImporterForGoMexSI2 in project eol-globi-data by jhpoelen.
the class GitHubImporterFactoryIT method createGoMexSI.
@Test
public void createGoMexSI() throws StudyImporterException, DatasetFinderException {
final DatasetFinderGitHubRemote datasetFinderGitHubRemote = new DatasetFinderGitHubRemote();
StudyImporter importer = importerFor(datasetFinderGitHubRemote, "gomexsi/interaction-data");
assertThat(importer, is(notNullValue()));
assertThat(importer, is(instanceOf(StudyImporterForGoMexSI2.class)));
StudyImporterForGoMexSI2 gomexsiImporter = (StudyImporterForGoMexSI2) importer;
assertThat(gomexsiImporter.getSourceCitation(), is("http://gomexsi.tamucc.edu"));
}
Aggregations