public void Test_GetTagProps() { TagProperties props = GEDCOMProvider.GetTagProps("ADDR"); Assert.IsNotNull(props); Assert.IsTrue(props.SkipEmpty); props = GEDCOMProvider.GetTagProps("test"); Assert.IsNull(props); }
public bool IsEmptySkip() { TagProperties props = GEDCOMProvider.GetTagProps(fName); return(props != null && props.SkipEmpty); }