diff options
Diffstat (limited to 'vendor/gregwar/captcha/tests')
-rw-r--r-- | vendor/gregwar/captcha/tests/CaptchaBuilderTest.php | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/gregwar/captcha/tests/CaptchaBuilderTest.php b/vendor/gregwar/captcha/tests/CaptchaBuilderTest.php new file mode 100644 index 00000000..5325a9c1 --- /dev/null +++ b/vendor/gregwar/captcha/tests/CaptchaBuilderTest.php @@ -0,0 +1,30 @@ +<?php + +namespace Test; + +use Gregwar\Captcha\CaptchaBuilder; +use PHPUnit\Framework\TestCase; + +class CaptchaBuilderTest extends TestCase +{ + public function testDemo() + { + $captcha = new CaptchaBuilder(); + $captcha + ->build() + ->save('out.jpg') + ; + + $this->assertTrue(file_exists(__DIR__.'/../out.jpg')); + } + + public function testFingerPrint() + { + $int = count(CaptchaBuilder::create() + ->build() + ->getFingerprint() + ); + + $this->assertTrue(is_int($int)); + } +}
\ No newline at end of file |