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