xref: /webtrees/tests/app/Elements/FamilyNonEventTest.php (revision d11be7027e34e3121be11cc025421873364403f9)
1a2143fbeSGreg Roach<?php
2a2143fbeSGreg Roach
3a2143fbeSGreg Roach/**
4a2143fbeSGreg Roach * webtrees: online genealogy
5*d11be702SGreg 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;
23a2143fbeSGreg Roach
24a2143fbeSGreg Roach/**
25a2143fbeSGreg Roach * Test harness for the class NonEvent
26a2143fbeSGreg Roach *
27a2143fbeSGreg Roach * @covers Fisharebest\Webtrees\Elements\FamilyNonEvent
28a2143fbeSGreg Roach */
29a2143fbeSGreg Roachclass FamilyNonEventTest extends TestCase
30a2143fbeSGreg Roach{
31a2143fbeSGreg Roach    public function testClass(): void
32a2143fbeSGreg Roach    {
33a2143fbeSGreg Roach        $this->assertTrue(class_exists(\Fisharebest\Webtrees\Elements\FamilyNonEvent::class));
34a2143fbeSGreg Roach    }
35a2143fbeSGreg Roach}
36