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