14eb71cfaSGreg Roach<?php 23976b470SGreg Roach 34eb71cfaSGreg Roach/** 44eb71cfaSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 64eb71cfaSGreg Roach * This program is free software: you can redistribute it and/or modify 74eb71cfaSGreg Roach * it under the terms of the GNU General Public License as published by 84eb71cfaSGreg Roach * the Free Software Foundation, either version 3 of the License, or 94eb71cfaSGreg Roach * (at your option) any later version. 104eb71cfaSGreg Roach * This program is distributed in the hope that it will be useful, 114eb71cfaSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 124eb71cfaSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 134eb71cfaSGreg Roach * GNU General Public License for more details. 144eb71cfaSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 164eb71cfaSGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2084e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module; 214eb71cfaSGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 243cfcc809SGreg Roach 25*202c018bSGreg Roach#[CoversClass(StatisticsChartModule::class)] 263cfcc809SGreg Roachclass StatisticsChartModuleTest extends TestCase 27c1010edaSGreg Roach{ 284eb71cfaSGreg Roach /** 294eb71cfaSGreg Roach * Test that the class exists 304eb71cfaSGreg Roach */ 319b802b22SGreg Roach public function testClassExists(): void 32c1010edaSGreg Roach { 335e933c21SGreg Roach self::assertTrue(class_exists(StatisticsChartModule::class)); 344eb71cfaSGreg Roach } 354eb71cfaSGreg Roach} 36