public void OnlyNoDuplicatedRecords() { var engine = new FileDiffEngine <DiffOrdersFixed>(); DiffOrdersFixed[] res = engine.OnlyNoDuplicatedRecords(FileTest.Good.DiffOrdersOld.Path, FileTest.Good.DiffOrdersNew.Path); Assert.AreEqual(7, res.Length); }
public void OnlyNoDuplicatedRecords() { engine = new FileDiffEngine(typeof (DiffOrdersFixed)); DiffOrdersFixed[] res = engine.OnlyNoDuplicatedRecords(Common.TestPath(@"good\DiffOrdersOld.txt"), Common.TestPath(@"good\DiffOrdersNew.txt")) as DiffOrdersFixed[]; Assert.AreEqual(7, res.Length); }
public void OnlyNoDuplicatedRecords() { engine = new FileDiffEngine(typeof(DiffOrdersFixed)); DiffOrdersFixed[] res = engine.OnlyNoDuplicatedRecords(Common.TestPath(@"good\DiffOrdersOld.txt"), Common.TestPath(@"good\DiffOrdersNew.txt")) as DiffOrdersFixed[]; Assert.AreEqual(7, res.Length); }