socialbox-php/tests/Socialbox/Other/CaptchaTest.php

17 lines
343 B
PHP
Raw Normal View History

2024-10-24 15:23:28 -04:00
<?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');
}
}