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