public void OpenDocumentTest()
        {
            string [] testFiles =
            {
                @"1.doc",
                @"2.doc",
                //@"3.doc",
                //@"4.doc",
                //@"5.doc",
                //@"6.doc",
                //@"7.doc",
                //@"8.doc",
                //@"9.doc",
                //@"10.doc",
                //@"11.doc",
                //@"12.doc",
                //@"13.doc",
                @"14.doc"
            };

            using (MSWordScansParser target = new MSWordScansParser())
            {
                foreach (string file in testFiles)
                {
                    target.ConvertToTxt(GetDataPath(file));
                }
            }
        }
 public void TestTest()
 {
     using (MSWordScansParser target = new MSWordScansParser())
     {
         target.Test();
     }
 }