1*3763c3f2SGreg Roach<?php 2*3763c3f2SGreg Roachnamespace Fisharebest\Webtrees; 3*3763c3f2SGreg Roach 4*3763c3f2SGreg Roach/** 5*3763c3f2SGreg Roach * webtrees: online genealogy 6*3763c3f2SGreg Roach * Copyright (C) 2015 webtrees development team 7*3763c3f2SGreg Roach * This program is free software: you can redistribute it and/or modify 8*3763c3f2SGreg Roach * it under the terms of the GNU General Public License as published by 9*3763c3f2SGreg Roach * the Free Software Foundation, either version 3 of the License, or 10*3763c3f2SGreg Roach * (at your option) any later version. 11*3763c3f2SGreg Roach * This program is distributed in the hope that it will be useful, 12*3763c3f2SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 13*3763c3f2SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14*3763c3f2SGreg Roach * GNU General Public License for more details. 15*3763c3f2SGreg Roach * You should have received a copy of the GNU General Public License 16*3763c3f2SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 17*3763c3f2SGreg Roach */ 18*3763c3f2SGreg Roach 19*3763c3f2SGreg Roachuse PHPUnit_Framework_TestCase; 20*3763c3f2SGreg Roach 21*3763c3f2SGreg Roach/** 22*3763c3f2SGreg Roach * Test harness for the class OccupationReportModule 23*3763c3f2SGreg Roach */ 24*3763c3f2SGreg Roachclass OccupationReportModuleTest extends PHPUnit_Framework_TestCase { 25*3763c3f2SGreg Roach /** 26*3763c3f2SGreg Roach * Prepare the environment for these tests 27*3763c3f2SGreg Roach * 28*3763c3f2SGreg Roach * @return void 29*3763c3f2SGreg Roach */ 30*3763c3f2SGreg Roach public function setUp() { 31*3763c3f2SGreg Roach } 32*3763c3f2SGreg Roach 33*3763c3f2SGreg Roach /** 34*3763c3f2SGreg Roach * Test that the class exists 35*3763c3f2SGreg Roach * 36*3763c3f2SGreg Roach * @return void 37*3763c3f2SGreg Roach */ 38*3763c3f2SGreg Roach public function testClassExists() { 39*3763c3f2SGreg Roach $this->assertTrue(class_exists(__NAMESPACE__ . '\OccupationReportModule')); 40*3763c3f2SGreg Roach } 41*3763c3f2SGreg Roach} 42