mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
15 lines
326 B
PHP
15 lines
326 B
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Form\Login;
|
|
|
|
use Alchemy\Phrasea\Form\Login\PhraseaAuthenticationForm;
|
|
use Alchemy\Tests\Phrasea\Form\FormTestCase;
|
|
|
|
class PhraseaAuthenticationFormTest extends FormTestCase
|
|
{
|
|
protected function getForm()
|
|
{
|
|
return new PhraseaAuthenticationForm(self::$DI['app']);
|
|
}
|
|
}
|