10e62c4b8SGreg Roach<?php 20e62c4b8SGreg Roach 30e62c4b8SGreg Roach/** 40e62c4b8SGreg Roach * webtrees: online genealogy 51062a142SGreg 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 */ 21*c1010edaSGreg Roachclass BirthDeathMarriageReportModuleTest extends \PHPUnit\Framework\TestCase 22*c1010edaSGreg Roach{ 230e62c4b8SGreg Roach /** 240e62c4b8SGreg Roach * Prepare the environment for these tests 250e62c4b8SGreg Roach */ 26*c1010edaSGreg Roach public function setUp() 27*c1010edaSGreg Roach { 280e62c4b8SGreg Roach } 290e62c4b8SGreg Roach 300e62c4b8SGreg Roach /** 310e62c4b8SGreg Roach * Test that the class exists 320e62c4b8SGreg Roach */ 33*c1010edaSGreg Roach public function testClassExists() 34*c1010edaSGreg Roach { 350e62c4b8SGreg Roach $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\BirthDeathMarriageReportModule')); 360e62c4b8SGreg Roach } 370e62c4b8SGreg Roach} 38