summaryrefslogtreecommitdiff
path: root/tests/app/Http/RequestHandlers/ExportGedcomPageTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Http/RequestHandlers/ExportGedcomPageTest.php')
-rw-r--r--tests/app/Http/RequestHandlers/ExportGedcomPageTest.php10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/app/Http/RequestHandlers/ExportGedcomPageTest.php b/tests/app/Http/RequestHandlers/ExportGedcomPageTest.php
index 7dd92c18dc..5bc6fe1e52 100644
--- a/tests/app/Http/RequestHandlers/ExportGedcomPageTest.php
+++ b/tests/app/Http/RequestHandlers/ExportGedcomPageTest.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 ExportGedcomPage
- *
- * @covers \Fisharebest\Webtrees\Http\RequestHandlers\ExportGedcomPage
- */
+
+#[CoversClass(ExportGedcomPage::class)]
class ExportGedcomPageTest extends TestCase
{
public function testClass(): void
{
- $this->assertTrue(class_exists(\Fisharebest\Webtrees\Http\RequestHandlers\ExportGedcomPage::class));
+ $this->assertTrue(class_exists(ExportGedcomPage::class));
}
}