Exemplo n.º 1
0
 public void Test_CheckGEDCOMFormat()
 {
     Assert.Throws(typeof(ArgumentNullException), () => { TreeTools.CheckGEDCOMFormat(null, null, null); });
     Assert.Throws(typeof(ArgumentNullException), () => { TreeTools.CheckGEDCOMFormat(fBaseWin.Context.Tree, null, null); });
     Assert.Throws(typeof(ArgumentNullException), () => { TreeTools.CheckGEDCOMFormat(fBaseWin.Context.Tree, fBaseWin.Context, null); });
     TreeTools.CheckGEDCOMFormat(fBaseWin.Context.Tree, fBaseWin.Context, fProgress);
 }