. */ declare(strict_types=1); namespace Fisharebest\Webtrees; /** * Test the user functions * * @coversNothing */ class ImportGedcomTest extends \Fisharebest\Webtrees\TestCase { protected static $uses_database = true; /** * @return void */ public function testImportTrees(): void { $tree = $this->importTree('demo.ged'); $this->assertSame(1, $tree->id()); } }