. */ declare(strict_types=1); namespace Fisharebest\Webtrees; /** * Test the user functions * * @coversNothing */ 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')); } }