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