. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\TestCase; /** * Test harness for the class FamilyTreeStatisticsModule * * @covers \Fisharebest\Webtrees\Module\FamilyTreeStatisticsModule */ class FamilyTreeStatisticsModuleTest extends TestCase { /** * Test that the class exists * * @return void */ public function testClassExists(): void { self::assertTrue(class_exists(FamilyTreeStatisticsModule::class)); } }