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