. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Repository; use Fisharebest\Webtrees\TestCase; /** * Test harness for the class GedcomRepository * * @covers \Fisharebest\Webtrees\Statistics\Repository\GedcomRepository */ class GedcomRepositoryTest extends TestCase { public function testClass(): void { $this->assertTrue(class_exists(\Fisharebest\Webtrees\Statistics\Repository\GedcomRepository::class)); } }