13b2b4f4aSGreg Roach<?php 23b2b4f4aSGreg Roach 33b2b4f4aSGreg Roach/** 43b2b4f4aSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 63b2b4f4aSGreg Roach * This program is free software: you can redistribute it and/or modify 73b2b4f4aSGreg Roach * it under the terms of the GNU General Public License as published by 83b2b4f4aSGreg Roach * the Free Software Foundation, either version 3 of the License, or 93b2b4f4aSGreg Roach * (at your option) any later version. 103b2b4f4aSGreg Roach * This program is distributed in the hope that it will be useful, 113b2b4f4aSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 123b2b4f4aSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 133b2b4f4aSGreg Roach * GNU General Public License for more details. 143b2b4f4aSGreg Roach * You should have received a copy of the GNU General Public License 153b2b4f4aSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 163b2b4f4aSGreg Roach */ 173b2b4f4aSGreg Roach 183b2b4f4aSGreg Roachdeclare(strict_types=1); 193b2b4f4aSGreg Roach 203b2b4f4aSGreg Roachnamespace Fisharebest\Webtrees\Elements; 213b2b4f4aSGreg Roach 223b2b4f4aSGreg Roachuse Fisharebest\Webtrees\TestCase; 23202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 243b2b4f4aSGreg Roach 25202c018bSGreg Roach#[CoversClass(ResidenceWithValue::class)] 263b2b4f4aSGreg Roachclass ResidenceWithValueTest extends TestCase 273b2b4f4aSGreg Roach{ 283b2b4f4aSGreg Roach public function testClass(): void 293b2b4f4aSGreg Roach { 30*a6d49169SGreg Roach self::assertTrue(class_exists(ResidenceWithValue::class)); 313b2b4f4aSGreg Roach } 323b2b4f4aSGreg Roach} 33