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