10e62c4b8SGreg Roach<?php 20e62c4b8SGreg Roach 30e62c4b8SGreg Roach/** 40e62c4b8SGreg Roach * webtrees: online genealogy 56bdf7674SGreg Roach * Copyright (C) 2017 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*3e983931SGreg 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