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 */ 1684e2cf4eSGreg Roachnamespace Fisharebest\Webtrees\Module; 170e62c4b8SGreg Roach 180e62c4b8SGreg Roach/** 190e62c4b8SGreg Roach * Test harness for the class BirthDeathMarriageReportModule 200e62c4b8SGreg Roach */ 2184e2cf4eSGreg Roachclass BirthDeathMarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase 22c1010edaSGreg Roach{ 230e62c4b8SGreg Roach /** 240e62c4b8SGreg Roach * Test that the class exists 25*52348eb8SGreg Roach * 26*52348eb8SGreg Roach * @return void 270e62c4b8SGreg Roach */ 28c1010edaSGreg Roach public function testClassExists() 29c1010edaSGreg Roach { 300e62c4b8SGreg Roach $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\BirthDeathMarriageReportModule')); 310e62c4b8SGreg Roach } 320e62c4b8SGreg Roach} 33