. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Services\GedcomImportService; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(GedcomImportService::class)] class ImportGedcomTest extends TestCase { protected static bool $uses_database = true; public function testImportTrees(): void { $tree = $this->importTree('demo.ged'); self::assertSame('1', $tree->getPreference('imported')); } }