diff options
Diffstat (limited to 'tests/app/Module')
75 files changed, 2755 insertions, 8 deletions
diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php new file mode 100644 index 0000000000..eefefbe681 --- /dev/null +++ b/tests/app/Module/AhnentafelReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class AhnentafelReportModule + */ +class AhnentafelReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\AhnentafelReportModule')); + } +} diff --git a/tests/app/Module/AlbumModuleTest.php b/tests/app/Module/AlbumModuleTest.php new file mode 100644 index 0000000000..aeabd9102b --- /dev/null +++ b/tests/app/Module/AlbumModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class AlbumModule + */ +class AlbumModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\AlbumModule')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php new file mode 100644 index 0000000000..a80e16cd99 --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateBasePlugin + */ +class BatchUpdateBasePluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateBasePlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php new file mode 100644 index 0000000000..0f280f8739 --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateDuplicateLinksPlugin + */ +class BatchUpdateDuplicateLinksPluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateDuplicateLinksPlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php new file mode 100644 index 0000000000..5ffec16929 --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateMarriedNamesPlugin + */ +class BatchUpdateMarriedNamesPluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateMarriedNamesPlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php new file mode 100644 index 0000000000..7d25e97bda --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateMissingDeathPlugin + */ +class BatchUpdateMissingDeathPluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateMissingDeathPlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php new file mode 100644 index 0000000000..9facdc6747 --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateNameFormatPlugin + */ +class BatchUpdateNameFormatPluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateNameFormatPlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php new file mode 100644 index 0000000000..5a65583507 --- /dev/null +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateSearchReplacePlugin + */ +class BatchUpdateSearchReplacePluginTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateSearchReplacePlugin')); + } +} diff --git a/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php new file mode 100644 index 0000000000..3c65558caf --- /dev/null +++ b/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BirthDeathMarriageReportModule + */ +class BirthDeathMarriageReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BirthDeathMarriageReportModule')); + } +} diff --git a/tests/app/Module/BatchUpdateModuleTest.php b/tests/app/Module/BatchUpdateModuleTest.php new file mode 100644 index 0000000000..8a1027ea2a --- /dev/null +++ b/tests/app/Module/BatchUpdateModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BatchUpdateModule + */ +class BatchUpdateModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateModule')); + } +} diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php new file mode 100644 index 0000000000..8def207a58 --- /dev/null +++ b/tests/app/Module/BirthReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class BirthReportModule + */ +class BirthReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\BirthReportModule')); + } +} diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php new file mode 100644 index 0000000000..288e3e0258 --- /dev/null +++ b/tests/app/Module/CemeteryReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class CemeteryReportModule + */ +class CemeteryReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\CemeteryReportModule')); + } +} diff --git a/tests/app/Module/CensusAssistantModuleTest.php b/tests/app/Module/CensusAssistantModuleTest.php new file mode 100644 index 0000000000..6a86f42ec0 --- /dev/null +++ b/tests/app/Module/CensusAssistantModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class CensusAssistantModule + */ +class CensusAssistantModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\CensusAssistantModule')); + } +} diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php new file mode 100644 index 0000000000..c26b590527 --- /dev/null +++ b/tests/app/Module/ChangeReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ChangeReportModule + */ +class ChangeReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ChangeReportModule')); + } +} diff --git a/tests/app/Module/ChartsBlockModuleTest.php b/tests/app/Module/ChartsBlockModuleTest.php new file mode 100644 index 0000000000..e121a9c9e2 --- /dev/null +++ b/tests/app/Module/ChartsBlockModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ChartsBlockModule + */ +class ChartsBlockModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ChartsBlockModule')); + } +} diff --git a/tests/app/Module/CkeditorModuleTest.php b/tests/app/Module/CkeditorModuleTest.php new file mode 100644 index 0000000000..18ee5cee3d --- /dev/null +++ b/tests/app/Module/CkeditorModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class CkeditorModule + */ +class CkeditorModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\CkeditorModule')); + } +} diff --git a/tests/app/Module/ClippingsCart/ClippingsCartTest.php b/tests/app/Module/ClippingsCart/ClippingsCartTest.php new file mode 100644 index 0000000000..6052b892e5 --- /dev/null +++ b/tests/app/Module/ClippingsCart/ClippingsCartTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ClippingsCart + */ +class ClippingsCartTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ClippingsCart')); + } +} diff --git a/tests/app/Module/ClippingsCartModuleTest.php b/tests/app/Module/ClippingsCartModuleTest.php new file mode 100644 index 0000000000..6c0cdbb7cd --- /dev/null +++ b/tests/app/Module/ClippingsCartModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ClippingsCartModule + */ +class ClippingsCartModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ClippingsCartModule')); + } +} diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php new file mode 100644 index 0000000000..6306ad188c --- /dev/null +++ b/tests/app/Module/DeathReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class DeathReportModule + */ +class DeathReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\DeathReportModule')); + } +} diff --git a/tests/app/Module/DescendancyModuleTest.php b/tests/app/Module/DescendancyModuleTest.php new file mode 100644 index 0000000000..5d6cadb9fd --- /dev/null +++ b/tests/app/Module/DescendancyModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class DescendancyModule + */ +class DescendancyModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\DescendancyModule')); + } +} diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php new file mode 100644 index 0000000000..6449740efc --- /dev/null +++ b/tests/app/Module/DescendancyReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class DescendancyReportModule + */ +class DescendancyReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\DescendancyReportModule')); + } +} diff --git a/tests/app/Module/ExtraInformationModuleTest.php b/tests/app/Module/ExtraInformationModuleTest.php new file mode 100644 index 0000000000..b062422a2d --- /dev/null +++ b/tests/app/Module/ExtraInformationModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ExtraInformationModule + */ +class ExtraInformationModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ExtraInformationModule')); + } +} diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php new file mode 100644 index 0000000000..044d6c4c07 --- /dev/null +++ b/tests/app/Module/FactSourcesReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FactSourcesReportModule + */ +class FactSourcesReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FactSourcesReportModule')); + } +} diff --git a/tests/app/Module/FamiliesSidebarModuleTest.php b/tests/app/Module/FamiliesSidebarModuleTest.php new file mode 100644 index 0000000000..d70676a204 --- /dev/null +++ b/tests/app/Module/FamiliesSidebarModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamiliesSidebarModule + */ +class FamiliesSidebarModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamiliesSidebarModule')); + } +} diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php new file mode 100644 index 0000000000..6ad7184a77 --- /dev/null +++ b/tests/app/Module/FamilyGroupReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamilyGroupReportModule + */ +class FamilyGroupReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyGroupReportModule')); + } +} diff --git a/tests/app/Module/FamilyNavigatorModuleTest.php b/tests/app/Module/FamilyNavigatorModuleTest.php new file mode 100644 index 0000000000..0f234fd8fa --- /dev/null +++ b/tests/app/Module/FamilyNavigatorModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamilyNavigatorModule + */ +class FamilyNavigatorModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyNavigatorModule')); + } +} diff --git a/tests/app/Module/FamilyTreeFavoritesModuleTest.php b/tests/app/Module/FamilyTreeFavoritesModuleTest.php new file mode 100644 index 0000000000..20da27f783 --- /dev/null +++ b/tests/app/Module/FamilyTreeFavoritesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamilyTreeFavoritesModule + */ +class FamilyTreeFavoritesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeFavoritesModule')); + } +} diff --git a/tests/app/Module/FamilyTreeNewsModuleTest.php b/tests/app/Module/FamilyTreeNewsModuleTest.php new file mode 100644 index 0000000000..9f4999b69e --- /dev/null +++ b/tests/app/Module/FamilyTreeNewsModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamilyTreeNewsModule + */ +class FamilyTreeNewsModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeNewsModule')); + } +} diff --git a/tests/app/Module/FamilyTreeStatisticsModuleTest.php b/tests/app/Module/FamilyTreeStatisticsModuleTest.php new file mode 100644 index 0000000000..bf180a4b09 --- /dev/null +++ b/tests/app/Module/FamilyTreeStatisticsModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FamilyTreeStatisticsModule + */ +class FamilyTreeStatisticsModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeStatisticsModule')); + } +} diff --git a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php new file mode 100644 index 0000000000..39d8061c5a --- /dev/null +++ b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class FrequentlyAskedQuestionsModule + */ +class FrequentlyAskedQuestionsModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\FrequentlyAskedQuestionsModule')); + } +} diff --git a/tests/app/Module/GoogleMapsModuleTest.php b/tests/app/Module/GoogleMapsModuleTest.php new file mode 100644 index 0000000000..8db17eec10 --- /dev/null +++ b/tests/app/Module/GoogleMapsModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class GoogleMapsModule + */ +class GoogleMapsModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\GoogleMapsModule')); + } +} diff --git a/tests/app/Module/HtmlBlockModuleTest.php b/tests/app/Module/HtmlBlockModuleTest.php new file mode 100644 index 0000000000..e10784d00e --- /dev/null +++ b/tests/app/Module/HtmlBlockModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class HtmlBlockModule + */ +class HtmlBlockModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\HtmlBlockModule')); + } +} diff --git a/tests/app/Module/IndividualFactsTabModuleTest.php b/tests/app/Module/IndividualFactsTabModuleTest.php new file mode 100644 index 0000000000..87829c257e --- /dev/null +++ b/tests/app/Module/IndividualFactsTabModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class IndividualFactsTabModule + */ +class IndividualFactsTabModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualFactsTabModule')); + } +} diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php new file mode 100644 index 0000000000..4ac33fb0b5 --- /dev/null +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class IndividualFamiliesReportModule + */ +class IndividualFamiliesReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualFamiliesReportModule')); + } +} diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php new file mode 100644 index 0000000000..e83ec6e07a --- /dev/null +++ b/tests/app/Module/IndividualReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class IndividualReportModule + */ +class IndividualReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualReportModule')); + } +} diff --git a/tests/app/Module/IndividualSidebarModuleTest.php b/tests/app/Module/IndividualSidebarModuleTest.php new file mode 100644 index 0000000000..3420804355 --- /dev/null +++ b/tests/app/Module/IndividualSidebarModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class IndividualSidebarModule + */ +class IndividualSidebarModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualSidebarModule')); + } +} diff --git a/tests/app/Module/InteractiveTree/TreeViewTest.php b/tests/app/Module/InteractiveTree/TreeViewTest.php new file mode 100644 index 0000000000..e96af436e2 --- /dev/null +++ b/tests/app/Module/InteractiveTree/TreeViewTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class TreeView + */ +class TreeViewTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\TreeView')); + } +} diff --git a/tests/app/Module/InteractiveTreeModuleTest.php b/tests/app/Module/InteractiveTreeModuleTest.php new file mode 100644 index 0000000000..f58a114260 --- /dev/null +++ b/tests/app/Module/InteractiveTreeModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class InteractiveTreeModule + */ +class InteractiveTreeModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\InteractiveTreeModule')); + } +} diff --git a/tests/app/Module/LoggedInUsersModuleTest.php b/tests/app/Module/LoggedInUsersModuleTest.php new file mode 100644 index 0000000000..63d484220b --- /dev/null +++ b/tests/app/Module/LoggedInUsersModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class LoggedInUsersModule + */ +class LoggedInUsersModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\LoggedInUsersModule')); + } +} diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php new file mode 100644 index 0000000000..f7118c3d1a --- /dev/null +++ b/tests/app/Module/MarriageReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class MarriageReportModule + */ +class MarriageReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\MarriageReportModule')); + } +} diff --git a/tests/app/Module/MediaTabModuleTest.php b/tests/app/Module/MediaTabModuleTest.php new file mode 100644 index 0000000000..d92859edb8 --- /dev/null +++ b/tests/app/Module/MediaTabModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class MediaTabModule + */ +class MediaTabModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\MediaTabModule')); + } +} diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php new file mode 100644 index 0000000000..1829a6b106 --- /dev/null +++ b/tests/app/Module/MissingFactsReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class MissingFactsReportModule + */ +class MissingFactsReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\MissingFactsReportModule')); + } +} diff --git a/tests/app/Module/ModuleBlockTest.php b/tests/app/Module/ModuleBlockInterfaceTest.php index 6c2c836474..ad98d992d0 100644 --- a/tests/app/Module/ModuleBlockTest.php +++ b/tests/app/Module/ModuleBlockInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleBlockInterface */ -class ModuleBlockTest extends PHPUnit_Framework_TestCase { +class ModuleBlockInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleChartTest.php b/tests/app/Module/ModuleChartInterfaceTest.php index 94d62924bd..7e9efd007d 100644 --- a/tests/app/Module/ModuleChartTest.php +++ b/tests/app/Module/ModuleChartInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleChartInterface */ -class ModuleChartTest extends PHPUnit_Framework_TestCase { +class ModuleChartInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleConfigTest.php b/tests/app/Module/ModuleConfigInterfaceTest.php index a65d93f65d..3303062a32 100644 --- a/tests/app/Module/ModuleConfigTest.php +++ b/tests/app/Module/ModuleConfigInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleConfigInterface */ -class ModuleConfigTest extends PHPUnit_Framework_TestCase { +class ModuleConfigInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleMenuTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php index 14e68839d3..8713e99d1d 100644 --- a/tests/app/Module/ModuleMenuTest.php +++ b/tests/app/Module/ModuleMenuInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleMenuInterface */ -class ModuleMenuTest extends PHPUnit_Framework_TestCase { +class ModuleMenuInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleReportTest.php b/tests/app/Module/ModuleReportInterfaceTest.php index e5fe5a1590..43ee8128f2 100644 --- a/tests/app/Module/ModuleReportTest.php +++ b/tests/app/Module/ModuleReportInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleReportInterface */ -class ModuleReportTest extends PHPUnit_Framework_TestCase { +class ModuleReportInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleSidebarTest.php b/tests/app/Module/ModuleSidebarInterfaceTest.php index d999fa972d..92cfb55fb7 100644 --- a/tests/app/Module/ModuleSidebarTest.php +++ b/tests/app/Module/ModuleSidebarInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleSidebarInterface */ -class ModuleSidebarTest extends PHPUnit_Framework_TestCase { +class ModuleSidebarInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleTabTest.php b/tests/app/Module/ModuleTabInterfaceTest.php index ab685f72a5..a49085def0 100644 --- a/tests/app/Module/ModuleTabTest.php +++ b/tests/app/Module/ModuleTabInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleTabInterface */ -class ModuleTabTest extends PHPUnit_Framework_TestCase { +class ModuleTabInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/ModuleThemeTest.php b/tests/app/Module/ModuleThemeInterfaceTest.php index c768206ba5..8afd0eeda2 100644 --- a/tests/app/Module/ModuleThemeTest.php +++ b/tests/app/Module/ModuleThemeInterfaceTest.php @@ -21,7 +21,7 @@ use PHPUnit_Framework_TestCase; /** * Test harness for the class ModuleThemeInterface */ -class ModuleThemeTest extends PHPUnit_Framework_TestCase { +class ModuleThemeInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * diff --git a/tests/app/Module/NotesTabModuleTest.php b/tests/app/Module/NotesTabModuleTest.php new file mode 100644 index 0000000000..dd7824ba4e --- /dev/null +++ b/tests/app/Module/NotesTabModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class NotesTabModule + */ +class NotesTabModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\NotesTabModule')); + } +} diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php new file mode 100644 index 0000000000..bf83baa238 --- /dev/null +++ b/tests/app/Module/OccupationReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class OccupationReportModule + */ +class OccupationReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\OccupationReportModule')); + } +} diff --git a/tests/app/Module/OnThisDayModuleTest.php b/tests/app/Module/OnThisDayModuleTest.php new file mode 100644 index 0000000000..59997717db --- /dev/null +++ b/tests/app/Module/OnThisDayModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class OnThisDayModule + */ +class OnThisDayModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\OnThisDayModule')); + } +} diff --git a/tests/app/Module/PageMenuModuleTest.php b/tests/app/Module/PageMenuModuleTest.php new file mode 100644 index 0000000000..c977507cd2 --- /dev/null +++ b/tests/app/Module/PageMenuModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class PageMenuModule + */ +class PageMenuModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\PageMenuModule')); + } +} diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php new file mode 100644 index 0000000000..df6df2bd77 --- /dev/null +++ b/tests/app/Module/PedigreeReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class PedigreeReportModule + */ +class PedigreeReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\PedigreeReportModule')); + } +} diff --git a/tests/app/Module/RecentChangesModuleTest.php b/tests/app/Module/RecentChangesModuleTest.php new file mode 100644 index 0000000000..d8eeeab64c --- /dev/null +++ b/tests/app/Module/RecentChangesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class RecentChangesModule + */ +class RecentChangesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\RecentChangesModule')); + } +} diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php new file mode 100644 index 0000000000..a4d4f9f8fc --- /dev/null +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class RelatedIndividualsReportModule + */ +class RelatedIndividualsReportModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\RelatedIndividualsReportModule')); + } +} diff --git a/tests/app/Module/RelativesTabModuleTest.php b/tests/app/Module/RelativesTabModuleTest.php new file mode 100644 index 0000000000..f3523dd48b --- /dev/null +++ b/tests/app/Module/RelativesTabModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class RelativesTabModule + */ +class RelativesTabModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\RelativesTabModule')); + } +} diff --git a/tests/app/Module/ResearchTaskModuleTest.php b/tests/app/Module/ResearchTaskModuleTest.php new file mode 100644 index 0000000000..59628192de --- /dev/null +++ b/tests/app/Module/ResearchTaskModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ResearchTaskModule + */ +class ResearchTaskModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ResearchTaskModule')); + } +} diff --git a/tests/app/Module/ReviewChangesModuleTest.php b/tests/app/Module/ReviewChangesModuleTest.php new file mode 100644 index 0000000000..1dc0a0109a --- /dev/null +++ b/tests/app/Module/ReviewChangesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ReviewChangesModule + */ +class ReviewChangesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ReviewChangesModule')); + } +} diff --git a/tests/app/Module/SiteMapModuleTest.php b/tests/app/Module/SiteMapModuleTest.php new file mode 100644 index 0000000000..9eaf1de328 --- /dev/null +++ b/tests/app/Module/SiteMapModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class SiteMapModule + */ +class SiteMapModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\SiteMapModule')); + } +} diff --git a/tests/app/Module/SlideShowModuleTest.php b/tests/app/Module/SlideShowModuleTest.php new file mode 100644 index 0000000000..66037e6a6e --- /dev/null +++ b/tests/app/Module/SlideShowModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class SlideShowModule + */ +class SlideShowModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\SlideShowModule')); + } +} diff --git a/tests/app/Module/SourcesTabModuleTest.php b/tests/app/Module/SourcesTabModuleTest.php new file mode 100644 index 0000000000..6711de28fb --- /dev/null +++ b/tests/app/Module/SourcesTabModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class SourcesTabModule + */ +class SourcesTabModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\SourcesTabModule')); + } +} diff --git a/tests/app/Module/StoriesModuleTest.php b/tests/app/Module/StoriesModuleTest.php new file mode 100644 index 0000000000..4a73015ab3 --- /dev/null +++ b/tests/app/Module/StoriesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class StoriesModule + */ +class StoriesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\StoriesModule')); + } +} diff --git a/tests/app/Module/ThemeSelectModuleTest.php b/tests/app/Module/ThemeSelectModuleTest.php new file mode 100644 index 0000000000..50de7784a7 --- /dev/null +++ b/tests/app/Module/ThemeSelectModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class ThemeSelectModule + */ +class ThemeSelectModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\ThemeSelectModule')); + } +} diff --git a/tests/app/Module/TopGivenNamesModuleTest.php b/tests/app/Module/TopGivenNamesModuleTest.php new file mode 100644 index 0000000000..8d042c2d74 --- /dev/null +++ b/tests/app/Module/TopGivenNamesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class TopGivenNamesModuleModule + */ +class TopGivenNamesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\TopGivenNamesModule')); + } +} diff --git a/tests/app/Module/TopPageViewsModuleTest.php b/tests/app/Module/TopPageViewsModuleTest.php new file mode 100644 index 0000000000..b85c368f0e --- /dev/null +++ b/tests/app/Module/TopPageViewsModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class TopPageViewsModule + */ +class TopPageViewsModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\TopPageViewsModule')); + } +} diff --git a/tests/app/Module/TopSurnamesModuleTest.php b/tests/app/Module/TopSurnamesModuleTest.php new file mode 100644 index 0000000000..dd8203625e --- /dev/null +++ b/tests/app/Module/TopSurnamesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class TopSurnamesModule + */ +class TopSurnamesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\TopSurnamesModule')); + } +} diff --git a/tests/app/Module/UpcomingAnniversariesModuleTest.php b/tests/app/Module/UpcomingAnniversariesModuleTest.php new file mode 100644 index 0000000000..cb134407d3 --- /dev/null +++ b/tests/app/Module/UpcomingAnniversariesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class UpcomingAnniversariesModule + */ +class UpcomingAnniversariesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\UpcomingAnniversariesModule')); + } +} diff --git a/tests/app/Module/UserFavoritesModuleTest.php b/tests/app/Module/UserFavoritesModuleTest.php new file mode 100644 index 0000000000..5fc8c5bee3 --- /dev/null +++ b/tests/app/Module/UserFavoritesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class UserFavoritesModule + */ +class UserFavoritesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\UserFavoritesModule')); + } +} diff --git a/tests/app/Module/UserJournalModuleTest.php b/tests/app/Module/UserJournalModuleTest.php new file mode 100644 index 0000000000..231f0540f2 --- /dev/null +++ b/tests/app/Module/UserJournalModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class UserJournalModule + */ +class UserJournalModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\UserJournalModule')); + } +} diff --git a/tests/app/Module/UserMessagesModuleTest.php b/tests/app/Module/UserMessagesModuleTest.php new file mode 100644 index 0000000000..a2fb556fb9 --- /dev/null +++ b/tests/app/Module/UserMessagesModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class UserMessagesModule + */ +class UserMessagesModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\UserMessagesModule')); + } +} diff --git a/tests/app/Module/UserWelcomeModuleTest.php b/tests/app/Module/UserWelcomeModuleTest.php new file mode 100644 index 0000000000..f92e8ac0ac --- /dev/null +++ b/tests/app/Module/UserWelcomeModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class UserWelcomeModule + */ +class UserWelcomeModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\UserWelcomeModule')); + } +} diff --git a/tests/app/Module/WelcomeBlockModuleTest.php b/tests/app/Module/WelcomeBlockModuleTest.php new file mode 100644 index 0000000000..f917c5cc88 --- /dev/null +++ b/tests/app/Module/WelcomeBlockModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class WelcomeBlockModule + */ +class WelcomeBlockModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\WelcomeBlockModule')); + } +} diff --git a/tests/app/Module/YahrzeitModuleTest.php b/tests/app/Module/YahrzeitModuleTest.php new file mode 100644 index 0000000000..48f64acabc --- /dev/null +++ b/tests/app/Module/YahrzeitModuleTest.php @@ -0,0 +1,41 @@ +<?php +namespace Fisharebest\Webtrees; + +/** + * webtrees: online genealogy + * Copyright (C) 2015 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class YahrzeitModule + */ +class YahrzeitModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test that the class exists + * + * @return void + */ + public function testClassExists() { + $this->assertTrue(class_exists(__NAMESPACE__ . '\YahrzeitModule')); + } +} |
