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