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