use of org.eol.globi.domain.StudyImpl in project eol-globi-data by jhpoelen.
the class LinkerDOITest method shouldResolveStudyHttps.
@Test
public void shouldResolveStudyHttps() {
StudyImpl study = new StudyImpl("some title", "some source", "", "http://example.com");
assertFalse(LinkerDOI.shouldResolve(study));
}
use of org.eol.globi.domain.StudyImpl in project eol-globi-data by jhpoelen.
the class LinkerDOITest method shouldResolveStudyEmptyCitation.
@Test
public void shouldResolveStudyEmptyCitation() {
StudyImpl study = new StudyImpl("some title", "some source", "", "");
assertFalse(LinkerDOI.shouldResolve(study));
}
Aggregations