xref: /webtrees/tests/app/Module/FamilyBookChartModuleTest.php (revision d11be7027e34e3121be11cc025421873364403f9)
14eb71cfaSGreg Roach<?php
23976b470SGreg Roach
34eb71cfaSGreg Roach/**
44eb71cfaSGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
64eb71cfaSGreg Roach * This program is free software: you can redistribute it and/or modify
74eb71cfaSGreg Roach * it under the terms of the GNU General Public License as published by
84eb71cfaSGreg Roach * the Free Software Foundation, either version 3 of the License, or
94eb71cfaSGreg Roach * (at your option) any later version.
104eb71cfaSGreg Roach * This program is distributed in the hope that it will be useful,
114eb71cfaSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
124eb71cfaSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
134eb71cfaSGreg Roach * GNU General Public License for more details.
144eb71cfaSGreg 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/>.
164eb71cfaSGreg Roach */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
2084e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
214eb71cfaSGreg Roach
223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
233cfcc809SGreg Roach
244eb71cfaSGreg Roach/**
254eb71cfaSGreg Roach * Test harness for the class FamilyBookChartModule
265a3d686cSGreg Roach *
275a3d686cSGreg Roach * @covers \Fisharebest\Webtrees\Module\FamilyBookChartModule
284eb71cfaSGreg Roach */
293cfcc809SGreg Roachclass FamilyBookChartModuleTest extends TestCase
30c1010edaSGreg Roach{
314eb71cfaSGreg Roach    /**
324eb71cfaSGreg Roach     * Test that the class exists
3352348eb8SGreg Roach     *
3452348eb8SGreg Roach     * @return void
354eb71cfaSGreg Roach     */
369b802b22SGreg Roach    public function testClassExists(): void
37c1010edaSGreg Roach    {
385e933c21SGreg Roach        self::assertTrue(class_exists(FamilyBookChartModule::class));
394eb71cfaSGreg Roach    }
404eb71cfaSGreg Roach}
41