public string Break(byte[] image, CaptchaBreaker.DTOs.CaptchaConfig config)
 {
     var cb = new GSACaptchaBreaker();
     
     string result = cb.Break(image, config);
     cb = null;
     return result;
 }
Exemplo n.º 2
0
        public void SolveUsingHalfwayNumberMethod(string input, string expected)
        {
            var actual = CaptchaBreaker.SolveUsingHalfwayNumberMethod(input);

            Assert.Equal(expected, actual);
        }