gedcom-api/src/test/java/de/nth/chronicle/gedcom/parser/GedcomReaderTests.java

24 lines
466 B
Java

package de.nth.chronicle.gedcom.parser;
import de.nth.chronicle.gedcom.Gedcom;
import org.junit.jupiter.api.Test;
import java.io.InputStream;
public class GedcomReaderTests {
@Test
void testMinimalGedcom() {
InputStream stream = GedcomReaderTests.class.getResourceAsStream("/examples/555SAMPLE.ged");
GedcomReader reader = new GedcomReader();
Gedcom gedcom = reader.read(stream);
System.out.println(gedcom);
}
}