. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\TestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Gedcom::class)] class GedcomTest extends TestCase { public function testClass(): void { $this->assertTrue(class_exists(Gedcom::class)); } }