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