. */ declare(strict_types=1); namespace App\Tests\Controller\AdminPages; use App\Entity\ProjectSystem\Project; /** * @group slow * @group DB */ class ProjectControllerTest extends AbstractAdminControllerTest { protected static string $base_path = '/en'.'/project'; protected static string $entity_class = Project::class; }