public void getDatosWithImage_tesseract_mayoracero()
        {
            //A
            string img     = string.Empty;
            var    tProces = new ClassLibrary.Tesseract(TestImagePath);

            //A
            string result = tProces.tesseractProcess();


            //A
            Assert.IsTrue(result.Length > 0);
        }
        public void getDatosWithOutImage_tesseract_ErrorEmptyResult()
        {
            //A
            string img           = string.Empty;
            string TestImagePath = _FilesDirectoryImages + "phototest.XxX"; // Sin imagen

            var tProces = new ClassLibrary.Tesseract(TestImagePath);

            //A
            string result = tProces.tesseractProcess();


            //A
            Assert.IsTrue(result.Length <= 0);
        }