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