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