public void Gedcom2XMLParserConstructorTest() { SetupTestVariables(); Gedcom2XMLParser target = new Gedcom2XMLParser(gedcomDocumentName, xmlDocumentName); Assert.IsNotNull(target); }
public void loadGedcomDataTest() { SetupTestVariables(); Gedcom2XMLParser target = new Gedcom2XMLParser(gedcomDocumentName, xmlDocumentName); result = target.loadGedcomData(); Assert.IsTrue(result); }
public void saveDocTest() { SetupTestVariables(); Gedcom2XMLParser target = new Gedcom2XMLParser(gedcomDocumentName, xmlDocumentName); target.loadGedcomData(); target.processGedcomDataToXML(); result = target.saveDoc(); Assert.IsTrue(result); }