socialbox-php/tests/Socialbox/Other/CaptchaTest.php
2024-10-24 15:23:28 -04:00

17 lines
No EOL
343 B
PHP

<?php
namespace Socialbox\Other;
use Gregwar\Captcha\CaptchaBuilder;
use PHPUnit\Framework\TestCase;
class CaptchaTest extends TestCase
{
public function testCaptchaRendering()
{
$builder = new CaptchaBuilder("Foo Bar");
$builder->build();
$builder->save(__DIR__ . DIRECTORY_SEPARATOR . 'test.png');
}
}