. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\TestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(NotesTabModule::class)] class NotesTabModuleTest extends TestCase { /** * Test that the class exists */ public function testClassExists(): void { self::assertTrue(class_exists(NotesTabModule::class)); } }