summaryrefslogtreecommitdiff
path: root/tests/app/Http/RequestHandlers/ImportGedcomPageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Http/RequestHandlers/ImportGedcomPageTest.php')
-rw-r--r--tests/app/Http/RequestHandlers/ImportGedcomPageTest.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/app/Http/RequestHandlers/ImportGedcomPageTest.php b/tests/app/Http/RequestHandlers/ImportGedcomPageTest.php
index 63ba547de0..573f163c52 100644
--- a/tests/app/Http/RequestHandlers/ImportGedcomPageTest.php
+++ b/tests/app/Http/RequestHandlers/ImportGedcomPageTest.php
@@ -20,16 +20,14 @@ declare(strict_types=1);
namespace Fisharebest\Webtrees\Http\RequestHandlers;
use Fisharebest\Webtrees\TestCase;
+use PHPUnit\Framework\Attributes\CoversClass;
-/**
- * Test harness for the class ImportGedcomPage
- *
- * @covers \Fisharebest\Webtrees\Http\RequestHandlers\ImportGedcomPage
- */
+
+#[CoversClass(ImportGedcomPage::class)]
class ImportGedcomPageTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(\Fisharebest\Webtrees\Http\RequestHandlers\ImportGedcomPage::class));
+ $this->assertTrue(class_exists(ImportGedcomPage::class));
}
}