From 0ac40c6a9414e30343a0f61929a570c4f5fe4b97 Mon Sep 17 00:00:00 2001 From: Marcel Diegelmann Date: Fri, 26 Sep 2025 14:07:35 +0200 Subject: [PATCH] =?UTF-8?q?PartCustomStateControllerTest:=20Attribute=20f?= =?UTF-8?q?=C3=BCr=20PHPUnit-Gruppen=20umgestellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AdminPages/PartCustomStateControllerTest.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/Controller/AdminPages/PartCustomStateControllerTest.php b/tests/Controller/AdminPages/PartCustomStateControllerTest.php index b9230889..3e87dfe2 100644 --- a/tests/Controller/AdminPages/PartCustomStateControllerTest.php +++ b/tests/Controller/AdminPages/PartCustomStateControllerTest.php @@ -23,12 +23,11 @@ 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 AbstractAdminControllerTest +#[Group('slow')] +#[Group('DB')] +class PartCustomStateControllerTest extends AbstractAdminController { protected static string $base_path = '/en/part_custom_state'; protected static string $entity_class = PartCustomState::class;