1a8139624SGreg Roach<?php 2a8139624SGreg Roach 3a8139624SGreg Roach/** 4a8139624SGreg Roach * webtrees: online genealogy 5d11be702SGreg 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; 23202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 24a8139624SGreg Roach 25202c018bSGreg Roach#[CoversClass(ReportGenerate::class)] 26a8139624SGreg Roachclass ReportGenerateTest extends TestCase 27a8139624SGreg Roach{ 28a8139624SGreg Roach public function testClass(): void 29a8139624SGreg Roach { 30*a6d49169SGreg Roach self::assertTrue(class_exists(ReportGenerate::class)); 31a8139624SGreg Roach } 32a8139624SGreg Roach} 33