. */ declare(strict_types=1); namespace App\Tests\Controller\AdminPages; use PHPUnit\Framework\Attributes\Group; use App\Entity\Parts\Category; #[Group('slow')] #[Group('DB')] class CategoryController extends AbstractAdminController { protected static string $base_path = '/en/category'; protected static string $entity_class = Category::class; }