From 550b111f9b436ab9d2edef3d4a978f78eded4ee1 Mon Sep 17 00:00:00 2001 From: Jeremy Postlethwaite Date: Mon, 8 Jul 2024 10:29:13 -0700 Subject: [PATCH] v73.0.0 --- tests/Feature/Concerns/Creating/GetProjectKeyTest.php | 6 ++++-- tests/Feature/Concerns/Creating/HandleTicketCodeTest.php | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/Feature/Concerns/Creating/GetProjectKeyTest.php b/tests/Feature/Concerns/Creating/GetProjectKeyTest.php index 5632c2b..e47ea0c 100644 --- a/tests/Feature/Concerns/Creating/GetProjectKeyTest.php +++ b/tests/Feature/Concerns/Creating/GetProjectKeyTest.php @@ -4,16 +4,18 @@ */ declare(strict_types=1); -namespace Tests\Feature\Playground\Matrix\Console\Commands\About; +namespace Tests\Feature\Playground\Matrix\Concerns\Creating; +use PHPUnit\Framework\Attributes\CoversTrait; use Playground\Matrix\Concerns\Creating; use Playground\Matrix\Models\Project; use Playground\Matrix\Models\Ticket; use Tests\Feature\Playground\Matrix\TestCase; /** - * \Tests\Feature\Playground\Matrix\Console\Commands\About\GetProjectKeyTest + * \Tests\Feature\Playground\Matrix\Concerns\Creating\GetProjectKeyTest */ +#[CoversTrait(Creating::class)] class GetProjectKeyTest extends TestCase { use Creating; diff --git a/tests/Feature/Concerns/Creating/HandleTicketCodeTest.php b/tests/Feature/Concerns/Creating/HandleTicketCodeTest.php index 330e166..008a5ab 100644 --- a/tests/Feature/Concerns/Creating/HandleTicketCodeTest.php +++ b/tests/Feature/Concerns/Creating/HandleTicketCodeTest.php @@ -4,16 +4,18 @@ */ declare(strict_types=1); -namespace Tests\Feature\Playground\Matrix\Console\Commands\About; +namespace Tests\Feature\Playground\Matrix\Concerns\Creating; +use PHPUnit\Framework\Attributes\CoversTrait; use Playground\Matrix\Concerns\Creating; use Playground\Matrix\Models\Project; use Playground\Matrix\Models\Ticket; use Tests\Feature\Playground\Matrix\TestCase; /** - * \Tests\Feature\Playground\Matrix\Console\Commands\About\HandleTicketCodeTest + * \Tests\Feature\Playground\Matrix\Concerns\Creating\HandleTicketCodeTest */ +#[CoversTrait(Creating::class)] class HandleTicketCodeTest extends TestCase { use Creating;