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