xref: /webtrees/tests/app/Module/CompactTreeChartModuleTest.php (revision 3976b4703df669696105ed6b024b96d433c8fbdb)
14eb71cfaSGreg Roach<?php
2*3976b470SGreg Roach
34eb71cfaSGreg Roach/**
44eb71cfaSGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 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
154eb71cfaSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
164eb71cfaSGreg Roach */
17e7f56f2aSGreg Roachdeclare(strict_types=1);
18e7f56f2aSGreg Roach
1984e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
204eb71cfaSGreg Roach
214eb71cfaSGreg Roach/**
224eb71cfaSGreg Roach * Test harness for the class CompactTreeChartModule
234eb71cfaSGreg Roach */
2484e2cf4eSGreg Roachclass CompactTreeChartModuleTest extends \Fisharebest\Webtrees\TestCase
25c1010edaSGreg Roach{
264eb71cfaSGreg Roach    /**
274eb71cfaSGreg Roach     * Test that the class exists
2852348eb8SGreg Roach     *
2952348eb8SGreg Roach     * @return void
304eb71cfaSGreg Roach     */
319b802b22SGreg Roach    public function testClassExists(): void
32c1010edaSGreg Roach    {
33803193feSGreg Roach        $this->assertTrue(class_exists(\Fisharebest\Webtrees\Module\CompactTreeChartModule::class));
344eb71cfaSGreg Roach    }
354eb71cfaSGreg Roach}
36