1e563f71aSGreg Roach<?php 2e563f71aSGreg Roach 3e563f71aSGreg Roach/** 4e563f71aSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6e563f71aSGreg Roach * This program is free software: you can redistribute it and/or modify 7e563f71aSGreg Roach * it under the terms of the GNU General Public License as published by 8e563f71aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9e563f71aSGreg Roach * (at your option) any later version. 10e563f71aSGreg Roach * This program is distributed in the hope that it will be useful, 11e563f71aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12e563f71aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13e563f71aSGreg Roach * GNU General Public License for more details. 14e563f71aSGreg 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/>. 16e563f71aSGreg Roach */ 17e563f71aSGreg Roach 18e563f71aSGreg Roachdeclare(strict_types=1); 19e563f71aSGreg Roach 20e563f71aSGreg Roachnamespace Fisharebest\Webtrees\Module; 21e563f71aSGreg Roach 22e563f71aSGreg Roachuse Fisharebest\Webtrees\TestCase; 23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 24e563f71aSGreg Roach 25*202c018bSGreg Roach#[CoversClass(IndividualMetadataModule::class)] 265a3d686cSGreg Roachclass IndividualMetadataModuleTest extends TestCase 27e563f71aSGreg Roach{ 28e563f71aSGreg Roach /** 29e563f71aSGreg Roach * Test that the class exists 30e563f71aSGreg Roach */ 31e563f71aSGreg Roach public function testClassExists(): void 32e563f71aSGreg Roach { 33e563f71aSGreg Roach self::assertTrue(class_exists(IndividualMetadataModule::class)); 34e563f71aSGreg Roach } 35e563f71aSGreg Roach} 36