diff options
Diffstat (limited to 'tests/app/Module/AustrianHistoricEventsTest.php')
| -rw-r--r-- | tests/app/Module/AustrianHistoricEventsTest.php | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/app/Module/AustrianHistoricEventsTest.php b/tests/app/Module/AustrianHistoricEventsTest.php index 74bc72bbd8..d663eb09f7 100644 --- a/tests/app/Module/AustrianHistoricEventsTest.php +++ b/tests/app/Module/AustrianHistoricEventsTest.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 AustrianHistoricEvents - * - * @covers \Fisharebest\Webtrees\Module\AustrianHistoricEvents - */ + +#[CoversClass(AustrianHistoricEvents::class)] class AustrianHistoricEventsTest extends TestCase { public function testClass(): void { - $this->assertTrue(class_exists(\Fisharebest\Webtrees\Module\AustrianHistoricEvents::class)); + $this->assertTrue(class_exists(AustrianHistoricEvents::class)); } } |
