xref: /webtrees/tests/app/Module/BirthReportModuleTest.php (revision c1010eda29c0909ed4d5d463f32d32bfefdd4dfe)
13763c3f2SGreg Roach<?php
23763c3f2SGreg Roach
33763c3f2SGreg Roach/**
43763c3f2SGreg Roach * webtrees: online genealogy
51062a142SGreg Roach * Copyright (C) 2018 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 BirthReportModule
203763c3f2SGreg Roach */
21*c1010edaSGreg Roachclass BirthReportModuleTest extends \PHPUnit\Framework\TestCase
22*c1010edaSGreg Roach{
233763c3f2SGreg Roach    /**
243763c3f2SGreg Roach     * Prepare the environment for these tests
253763c3f2SGreg Roach     */
26*c1010edaSGreg Roach    public function setUp()
27*c1010edaSGreg Roach    {
283763c3f2SGreg Roach    }
293763c3f2SGreg Roach
303763c3f2SGreg Roach    /**
313763c3f2SGreg Roach     * Test that the class exists
323763c3f2SGreg Roach     */
33*c1010edaSGreg Roach    public function testClassExists()
34*c1010edaSGreg Roach    {
350e62c4b8SGreg Roach        $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\BirthReportModule'));
363763c3f2SGreg Roach    }
373763c3f2SGreg Roach}
38