xref: /webtrees/tests/app/Module/BirthDeathMarriageReportModuleTest.php (revision 1062a1429914c995339f502856821457aa975a5a)
10e62c4b8SGreg Roach<?php
20e62c4b8SGreg Roach
30e62c4b8SGreg Roach/**
40e62c4b8SGreg Roach * webtrees: online genealogy
5*1062a142SGreg Roach * Copyright (C) 2018 webtrees development team
60e62c4b8SGreg Roach * This program is free software: you can redistribute it and/or modify
70e62c4b8SGreg Roach * it under the terms of the GNU General Public License as published by
80e62c4b8SGreg Roach * the Free Software Foundation, either version 3 of the License, or
90e62c4b8SGreg Roach * (at your option) any later version.
100e62c4b8SGreg Roach * This program is distributed in the hope that it will be useful,
110e62c4b8SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
120e62c4b8SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
130e62c4b8SGreg Roach * GNU General Public License for more details.
140e62c4b8SGreg Roach * You should have received a copy of the GNU General Public License
150e62c4b8SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
160e62c4b8SGreg Roach */
170e62c4b8SGreg Roach
180e62c4b8SGreg Roach/**
190e62c4b8SGreg Roach * Test harness for the class BirthDeathMarriageReportModule
200e62c4b8SGreg Roach */
213e983931SGreg Roachclass BirthDeathMarriageReportModuleTest extends \PHPUnit\Framework\TestCase {
220e62c4b8SGreg Roach	/**
230e62c4b8SGreg Roach	 * Prepare the environment for these tests
240e62c4b8SGreg Roach	 */
250e62c4b8SGreg Roach	public function setUp() {
260e62c4b8SGreg Roach	}
270e62c4b8SGreg Roach
280e62c4b8SGreg Roach	/**
290e62c4b8SGreg Roach	 * Test that the class exists
300e62c4b8SGreg Roach	 */
310e62c4b8SGreg Roach	public function testClassExists() {
320e62c4b8SGreg Roach		$this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\BirthDeathMarriageReportModule'));
330e62c4b8SGreg Roach	}
340e62c4b8SGreg Roach}
35