gp.load("sample/5.5.1 sample 2.ged");
assertTrue(gp.errors.isEmpty());
assertTrue("There should be a warning because the file says it's 5.5 but has 5.5.1 tags in it",
!gp.warnings.isEmpty());
Gedcom g = gp.gedcom;
Finder f = new Finder(g);
List<Individual> found = f.findByName("Pinter", "Anonymus" /* sic */);
assertNotNull(found);
assertEquals(1, found.size());
Individual dude = found.get(0);
assertNotNull(dude);
assertEquals(1, dude.names.size());