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