13763c3f2SGreg Roach<?php 23763c3f2SGreg Roach 33763c3f2SGreg Roach/** 43763c3f2SGreg Roach * webtrees: online genealogy 56bdf7674SGreg Roach * Copyright (C) 2017 webtrees development team 63763c3f2SGreg Roach * This program is free software: you can redistribute it and/or modify 73763c3f2SGreg Roach * it under the terms of the GNU General Public License as published by 83763c3f2SGreg Roach * the Free Software Foundation, either version 3 of the License, or 93763c3f2SGreg Roach * (at your option) any later version. 103763c3f2SGreg Roach * This program is distributed in the hope that it will be useful, 113763c3f2SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 123763c3f2SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 133763c3f2SGreg Roach * GNU General Public License for more details. 143763c3f2SGreg Roach * You should have received a copy of the GNU General Public License 153763c3f2SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 163763c3f2SGreg Roach */ 173763c3f2SGreg Roach 183763c3f2SGreg Roach/** 193763c3f2SGreg Roach * Test harness for the class DeathReportModule 203763c3f2SGreg Roach */ 21*3e983931SGreg Roachclass DeathReportModuleTest extends \PHPUnit\Framework\TestCase { 223763c3f2SGreg Roach /** 233763c3f2SGreg Roach * Prepare the environment for these tests 243763c3f2SGreg Roach */ 253763c3f2SGreg Roach public function setUp() { 263763c3f2SGreg Roach } 273763c3f2SGreg Roach 283763c3f2SGreg Roach /** 293763c3f2SGreg Roach * Test that the class exists 303763c3f2SGreg Roach */ 313763c3f2SGreg Roach public function testClassExists() { 320e62c4b8SGreg Roach $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\DeathReportModule')); 333763c3f2SGreg Roach } 343763c3f2SGreg Roach} 35