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