public void works_with_good_lang()
        {
            var res = windowsOcrExecutor.GetOcrResult(path, "en-US", true);

            Assert.IsNotNull(res);
            var isOutputEmpty = string.IsNullOrEmpty(windowsOcrExecutor.debugPsOutput.ToString());

            Assert.IsTrue(isOutputEmpty);
        }
        public void works_with_bad_lang()
        {
            WindowsOcrExecutor windowsOcrExecutor = new WindowsOcrExecutor(new NoOpOcrCache());
            var res = windowsOcrExecutor.GetOcrResult(path, "_BAD_LANGUAGE_", true);

            Assert.IsNotNull(res);
            var isOutputEmpty = string.IsNullOrEmpty(windowsOcrExecutor.debugPsOutput.ToString());

            Assert.IsTrue(isOutputEmpty);
        }