public void TestDecompression()
 {
     TdmDataDocument.DecompressTddFileIntoXml(tddPath);
     Assert.IsTrue(File.Exists(tddPath.Replace(".tdd", ".xml")));
     File.Delete(tddPath.Replace(".tdd", ".xml"));
 }
 public void Startup()
 {
     byte[] byteArray = Resources.Dump_110718_0118;
     File.WriteAllBytes(tddPath, byteArray);
     data = new TdmDataDocument(tddPath);
 }