xref: /webtrees/tests/app/Module/DescendancyChartModuleTest.php (revision 84e2cf4e2b1803b300330f631d304db1a3c443dd)
14eb71cfaSGreg Roach<?php
24eb71cfaSGreg Roach/**
34eb71cfaSGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
54eb71cfaSGreg Roach * This program is free software: you can redistribute it and/or modify
64eb71cfaSGreg Roach * it under the terms of the GNU General Public License as published by
74eb71cfaSGreg Roach * the Free Software Foundation, either version 3 of the License, or
84eb71cfaSGreg Roach * (at your option) any later version.
94eb71cfaSGreg Roach * This program is distributed in the hope that it will be useful,
104eb71cfaSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
114eb71cfaSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
124eb71cfaSGreg Roach * GNU General Public License for more details.
134eb71cfaSGreg Roach * You should have received a copy of the GNU General Public License
144eb71cfaSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
154eb71cfaSGreg Roach */
16*84e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
174eb71cfaSGreg Roach
184eb71cfaSGreg Roach/**
194eb71cfaSGreg Roach * Test harness for the class DescendancyChartModule
204eb71cfaSGreg Roach */
21*84e2cf4eSGreg Roachclass DescendancyChartModuleTest extends \Fisharebest\Webtrees\TestCase
22c1010edaSGreg Roach{
234eb71cfaSGreg Roach    /**
244eb71cfaSGreg Roach     * Prepare the environment for these tests
254eb71cfaSGreg Roach     */
26c1010edaSGreg Roach    public function setUp()
27c1010edaSGreg Roach    {
284eb71cfaSGreg Roach    }
294eb71cfaSGreg Roach
304eb71cfaSGreg Roach    /**
314eb71cfaSGreg Roach     * Test that the class exists
324eb71cfaSGreg Roach     */
33c1010edaSGreg Roach    public function testClassExists()
34c1010edaSGreg Roach    {
354eb71cfaSGreg Roach        $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\DescendancyChartModule'));
364eb71cfaSGreg Roach    }
374eb71cfaSGreg Roach}
38