xref: /webtrees/tests/app/Module/BirthDeathMarriageReportModuleTest.php (revision e7f56f2af615447ab1a7646851f88b465ace9e04)
10e62c4b8SGreg Roach<?php
20e62c4b8SGreg Roach/**
30e62c4b8SGreg Roach * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
50e62c4b8SGreg Roach * This program is free software: you can redistribute it and/or modify
60e62c4b8SGreg Roach * it under the terms of the GNU General Public License as published by
70e62c4b8SGreg Roach * the Free Software Foundation, either version 3 of the License, or
80e62c4b8SGreg Roach * (at your option) any later version.
90e62c4b8SGreg Roach * This program is distributed in the hope that it will be useful,
100e62c4b8SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
110e62c4b8SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
120e62c4b8SGreg Roach * GNU General Public License for more details.
130e62c4b8SGreg Roach * You should have received a copy of the GNU General Public License
140e62c4b8SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
150e62c4b8SGreg Roach */
16*e7f56f2aSGreg Roachdeclare(strict_types=1);
17*e7f56f2aSGreg Roach
1884e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module;
190e62c4b8SGreg Roach
200e62c4b8SGreg Roach/**
210e62c4b8SGreg Roach * Test harness for the class BirthDeathMarriageReportModule
220e62c4b8SGreg Roach */
2384e2cf4eSGreg Roachclass BirthDeathMarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase
24c1010edaSGreg Roach{
250e62c4b8SGreg Roach    /**
260e62c4b8SGreg Roach     * Test that the class exists
2752348eb8SGreg Roach     *
2852348eb8SGreg Roach     * @return void
290e62c4b8SGreg Roach     */
30c1010edaSGreg Roach    public function testClassExists()
31c1010edaSGreg Roach    {
320e62c4b8SGreg Roach        $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\BirthDeathMarriageReportModule'));
330e62c4b8SGreg Roach    }
340e62c4b8SGreg Roach}
35