xref: /webtrees/tests/app/Elements/FamilyNonEventTest.php (revision 202c018b592d5a516e4a465dc6dc515f3be37399)
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;
23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
24a2143fbeSGreg Roach
25*202c018bSGreg Roach
26*202c018bSGreg Roach#[CoversClass(FamilyNonEvent::class)]
27a2143fbeSGreg Roachclass FamilyNonEventTest extends TestCase
28a2143fbeSGreg Roach{
29a2143fbeSGreg Roach    public function testClass(): void
30a2143fbeSGreg Roach    {
31*202c018bSGreg Roach        $this->assertTrue(class_exists(FamilyNonEvent::class));
32a2143fbeSGreg Roach    }
33a2143fbeSGreg Roach}
34