mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 16:58:42 +00:00
30 lines
568 B
PHP
30 lines
568 B
PHP
|
<?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));
|
||
|
}
|
||
|
}
|