pn.basic = "Bj\u00F8rn /J\u00F8orgen/";
rootValidator.validate();
assertNoIssues();
PersonalNameVariation romanized = new PersonalNameVariation();
pn.romanized.add(romanized);
romanized.givenName = new StringWithCustomTags("Bjorn");
romanized.surname = new StringWithCustomTags("Jorgen");
rootValidator.validate();
assertFindingsContain(Severity.ERROR, "variation", "name", "required");
romanized.variation = "Bjorn /Jorgen/";
rootValidator.validate();
assertNoIssues();
PersonalNameVariation phonetic = new PersonalNameVariation();
pn.phonetic.add(phonetic);
phonetic.givenName = new StringWithCustomTags("Byorn");
phonetic.surname = new StringWithCustomTags("Yorgen");
rootValidator.validate();
assertFindingsContain(Severity.ERROR, "variation", "name", "required");