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