. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Services; use Fisharebest\Webtrees\TestCase; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(GedcomExportService::class)] class GedcomExportServiceTest extends TestCase { public function testClass(): void { self::assertTrue(class_exists(GedcomExportService::class)); } }