public void Test_AddTag() { const string tagName = "BABA"; const string tagValue = "YAGA"; TagConstructor tagConstructor = null; GEDCOMAddress instance = (GEDCOMAddress)GEDCOMAddress.Create(null, null, "", ""); GEDCOMTag result = instance.AddTag(tagName, tagValue, tagConstructor); Assert.IsNotNull(instance.FindTag(tagName, 0)); }