1a8139624SGreg Roach<?php 2a8139624SGreg Roach 3a8139624SGreg Roach/** 4a8139624SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6a8139624SGreg Roach * This program is free software: you can redistribute it and/or modify 7a8139624SGreg Roach * it under the terms of the GNU General Public License as published by 8a8139624SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9a8139624SGreg Roach * (at your option) any later version. 10a8139624SGreg Roach * This program is distributed in the hope that it will be useful, 11a8139624SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12a8139624SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13a8139624SGreg Roach * GNU General Public License for more details. 14a8139624SGreg Roach * You should have received a copy of the GNU General Public License 15a8139624SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16a8139624SGreg Roach */ 17a8139624SGreg Roach 18a8139624SGreg Roachdeclare(strict_types=1); 19a8139624SGreg Roach 20a8139624SGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 21a8139624SGreg Roach 22a8139624SGreg Roachuse Fisharebest\Webtrees\TestCase; 23a8139624SGreg Roach 24a8139624SGreg Roach/** 25a8139624SGreg Roach * Test harness for the class ModulesAnalyticsAction 26a8139624SGreg Roach * 27a8139624SGreg Roach * @covers Fisharebest\Webtrees\Http\RequestHandlers\ModulesAnalyticsAction 28a8139624SGreg Roach */ 29a8139624SGreg Roachclass ModulesAnalyticsActionTest extends TestCase 30a8139624SGreg Roach{ 31a8139624SGreg Roach public function testClass(): void 32a8139624SGreg Roach { 33a8139624SGreg Roach $this->assertTrue(class_exists(\Fisharebest\Webtrees\Http\RequestHandlers\ModulesAnalyticsAction::class)); 34a8139624SGreg Roach } 35a8139624SGreg Roach} 36