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