diff options
Diffstat (limited to 'tests')
308 files changed, 612 insertions, 629 deletions
diff --git a/tests/app/Module/AbstractModuleTest.php b/tests/TestCase.php index 3a7bba0c43..998145283c 100644 --- a/tests/app/Module/AbstractModuleTest.php +++ b/tests/TestCase.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,24 +13,11 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** - * Test harness for the class AbstractModule + * Base class for unit tests */ -class AbstractModuleTest extends \PHPUnit\Framework\TestCase +class TestCase extends \PHPUnit\Framework\TestCase { - /** - * Prepare the environment for these tests - */ - public function setUp() - { - } - - /** - * Test that the class exists - */ - public function testClassExists() - { - $this->assertTrue(class_exists('\Fisharebest\Webtrees\Module\AbstractModule')); - } } diff --git a/tests/app/AuthTest.php b/tests/app/AuthTest.php index 35bb1cc15b..ebc5898518 100644 --- a/tests/app/AuthTest.php +++ b/tests/app/AuthTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Auth */ -class AuthTest extends \PHPUnit\Framework\TestCase +class AuthTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php index 2a344c061c..61e28c3dac 100644 --- a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php +++ b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAgeFemale5Years */ -class CensusColumnAgeFemale5YearsTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeFemale5YearsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnAgeFemaleTest.php b/tests/app/Census/CensusColumnAgeFemaleTest.php index c72fb4de6e..25fde5cfe1 100644 --- a/tests/app/Census/CensusColumnAgeFemaleTest.php +++ b/tests/app/Census/CensusColumnAgeFemaleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAgeFemale */ -class CensusColumnAgeFemaleTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeFemaleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnAgeMale5YearsTest.php b/tests/app/Census/CensusColumnAgeMale5YearsTest.php index 9d22094d4c..5d08eb21b6 100644 --- a/tests/app/Census/CensusColumnAgeMale5YearsTest.php +++ b/tests/app/Census/CensusColumnAgeMale5YearsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAgeMale5Years5Years */ -class CensusColumnAgeMale5YearsTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeMale5YearsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnAgeMaleTest.php b/tests/app/Census/CensusColumnAgeMaleTest.php index 651718d7a1..4b43cf2f2a 100644 --- a/tests/app/Census/CensusColumnAgeMaleTest.php +++ b/tests/app/Census/CensusColumnAgeMaleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAgeMale */ -class CensusColumnAgeMaleTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeMaleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnAgeMarriedTest.php b/tests/app/Census/CensusColumnAgeMarriedTest.php index 16a01d5df5..45ad5328bf 100644 --- a/tests/app/Census/CensusColumnAgeMarriedTest.php +++ b/tests/app/Census/CensusColumnAgeMarriedTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAgeMarried */ -class CensusColumnAgeMarriedTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeMarriedTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnAgeTest.php b/tests/app/Census/CensusColumnAgeTest.php index 12cd5b0b30..7c2644c19e 100644 --- a/tests/app/Census/CensusColumnAgeTest.php +++ b/tests/app/Census/CensusColumnAgeTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnAge */ -class CensusColumnAgeTest extends \PHPUnit\Framework\TestCase +class CensusColumnAgeTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDateTest.php b/tests/app/Census/CensusColumnBirthDateTest.php index 9ac27299a8..024bbecc2d 100644 --- a/tests/app/Census/CensusColumnBirthDateTest.php +++ b/tests/app/Census/CensusColumnBirthDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnAge */ -class CensusColumnBirthDateTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDateTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php index 4d21f79734..4473e80b94 100644 --- a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthDayDotMonthYearTest */ -class CensusColumnBirthDayDotMonthYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDayDotMonthYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php index b294995040..65c0eed0b4 100644 --- a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthDayMonthSlashYearTest */ -class CensusColumnBirthDayMonthSlashYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDayMonthSlashYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php index 045546453b..b4c0a0ab95 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthDaySlashMonthTest */ -class CensusColumnBirthDaySlashMonthTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDaySlashMonthTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php index 3fc4a9b7f9..57c6a593b8 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthDaySlashMonthYearTest */ -class CensusColumnBirthDaySlashMonthYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDaySlashMonthYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthDayTest.php b/tests/app/Census/CensusColumnBirthDayTest.php index c18e694104..bc74b459d7 100644 --- a/tests/app/Census/CensusColumnBirthDayTest.php +++ b/tests/app/Census/CensusColumnBirthDayTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnAge */ -class CensusColumnBirthDayTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthDayTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthMonthTest.php b/tests/app/Census/CensusColumnBirthMonthTest.php index ff38247f92..8e5790a803 100644 --- a/tests/app/Census/CensusColumnBirthMonthTest.php +++ b/tests/app/Census/CensusColumnBirthMonthTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnAge */ -class CensusColumnBirthMonthTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthMonthTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php index e455c8ed3b..e910280e13 100644 --- a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthPlaceSimple */ -class CensusColumnBirthPlaceSimpleTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthPlaceTest.php b/tests/app/Census/CensusColumnBirthPlaceTest.php index 0351940407..2dd1536f52 100644 --- a/tests/app/Census/CensusColumnBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBirthPlace */ -class CensusColumnBirthPlaceTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBirthYearTest.php b/tests/app/Census/CensusColumnBirthYearTest.php index ab09dff7c7..e477483c65 100644 --- a/tests/app/Census/CensusColumnBirthYearTest.php +++ b/tests/app/Census/CensusColumnBirthYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnAge */ -class CensusColumnBirthYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnBirthYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnBornForeignPartsTest.php b/tests/app/Census/CensusColumnBornForeignPartsTest.php index ad8dc18f0e..2ee5c9703c 100644 --- a/tests/app/Census/CensusColumnBornForeignPartsTest.php +++ b/tests/app/Census/CensusColumnBornForeignPartsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnBornForeignParts */ -class CensusColumnBornForeignPartsTest extends \PHPUnit\Framework\TestCase +class CensusColumnBornForeignPartsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnChildrenBornAliveTest.php b/tests/app/Census/CensusColumnChildrenBornAliveTest.php index ba1eed03cd..43eb67559c 100644 --- a/tests/app/Census/CensusColumnChildrenBornAliveTest.php +++ b/tests/app/Census/CensusColumnChildrenBornAliveTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnChildrenBornAlive */ -class CensusColumnChildrenBornAliveTest extends \PHPUnit\Framework\TestCase +class CensusColumnChildrenBornAliveTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnChildrenDiedTest.php b/tests/app/Census/CensusColumnChildrenDiedTest.php index 2ae24b23bb..5f97b4c6be 100644 --- a/tests/app/Census/CensusColumnChildrenDiedTest.php +++ b/tests/app/Census/CensusColumnChildrenDiedTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnChildrenDied */ -class CensusColumnChildrenDiedTest extends \PHPUnit\Framework\TestCase +class CensusColumnChildrenDiedTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnChildrenLivingTest.php b/tests/app/Census/CensusColumnChildrenLivingTest.php index 5cd8f72acb..614128de1f 100644 --- a/tests/app/Census/CensusColumnChildrenLivingTest.php +++ b/tests/app/Census/CensusColumnChildrenLivingTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnChildrenLiving */ -class CensusColumnChildrenLivingTest extends \PHPUnit\Framework\TestCase +class CensusColumnChildrenLivingTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionDanishTest.php b/tests/app/Census/CensusColumnConditionDanishTest.php index c46ea28a50..279b54b905 100644 --- a/tests/app/Census/CensusColumnConditionDanishTest.php +++ b/tests/app/Census/CensusColumnConditionDanishTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionDanish */ -class CensusColumnConditionDanishTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionDanishTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionEnglishTest.php b/tests/app/Census/CensusColumnConditionEnglishTest.php index e100ef8e04..8cf432a00c 100644 --- a/tests/app/Census/CensusColumnConditionEnglishTest.php +++ b/tests/app/Census/CensusColumnConditionEnglishTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionEnglish */ -class CensusColumnConditionEnglishTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionEnglishTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php index d10a0d6ca4..bdecf01d83 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchFemme */ -class CensusColumnConditionFrenchFemmeTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchFemmeTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php index 16f2abdcd1..aa4cfbca96 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchFille */ -class CensusColumnConditionFrenchFilleTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchFilleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchGarconTest.php b/tests/app/Census/CensusColumnConditionFrenchGarconTest.php index b1fcc374bc..47271c44f1 100644 --- a/tests/app/Census/CensusColumnConditionFrenchGarconTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchGarconTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchGarcon */ -class CensusColumnConditionFrenchGarconTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchGarconTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchHommeTest.php b/tests/app/Census/CensusColumnConditionFrenchHommeTest.php index 1dd9c7923c..0155adfc2f 100644 --- a/tests/app/Census/CensusColumnConditionFrenchHommeTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchHommeTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchHomme */ -class CensusColumnConditionFrenchHommeTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchHommeTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchVeufTest.php b/tests/app/Census/CensusColumnConditionFrenchVeufTest.php index 34d808dbff..f3772771e7 100644 --- a/tests/app/Census/CensusColumnConditionFrenchVeufTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchVeufTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchVeuf */ -class CensusColumnConditionFrenchVeufTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchVeufTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php index 13aa9a84b9..2e012199f8 100644 --- a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionFrenchVeuve */ -class CensusColumnConditionFrenchVeuveTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionFrenchVeuveTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnConditionUsTest.php b/tests/app/Census/CensusColumnConditionUsTest.php index 6102f754d7..b78846b629 100644 --- a/tests/app/Census/CensusColumnConditionUsTest.php +++ b/tests/app/Census/CensusColumnConditionUsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnConditionUs */ -class CensusColumnConditionUsTest extends \PHPUnit\Framework\TestCase +class CensusColumnConditionUsTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php index 3e184a382f..da72fff665 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnFatherBirthPlaceSimple */ -class CensusColumnFatherBirthPlaceSimpleTest extends \PHPUnit\Framework\TestCase +class CensusColumnFatherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php index e7d5fb4ee2..9e6c8e7b3a 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnFatherBirthPlace */ -class CensusColumnFatherBirthPlaceTest extends \PHPUnit\Framework\TestCase +class CensusColumnFatherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnFatherForeignTest.php b/tests/app/Census/CensusColumnFatherForeignTest.php index cdb9bb198f..262b0b59d5 100644 --- a/tests/app/Census/CensusColumnFatherForeignTest.php +++ b/tests/app/Census/CensusColumnFatherForeignTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnFatherForeign */ -class CensusColumnFatherForeignTest extends \PHPUnit\Framework\TestCase +class CensusColumnFatherForeignTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnFullNameTest.php b/tests/app/Census/CensusColumnFullNameTest.php index 1785a40972..df4af9083f 100644 --- a/tests/app/Census/CensusColumnFullNameTest.php +++ b/tests/app/Census/CensusColumnFullNameTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnFullName */ -class CensusColumnFullNameTest extends \PHPUnit\Framework\TestCase +class CensusColumnFullNameTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnGivenNameInitialTest.php b/tests/app/Census/CensusColumnGivenNameInitialTest.php index 85c97a72b6..a5b9d88788 100644 --- a/tests/app/Census/CensusColumnGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnGivenNameInitialTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnGivenNameInitial */ -class CensusColumnGivenNameInitialTest extends \PHPUnit\Framework\TestCase +class CensusColumnGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnGivenNamesTest.php b/tests/app/Census/CensusColumnGivenNamesTest.php index c78c0adbac..288cdcce05 100644 --- a/tests/app/Census/CensusColumnGivenNamesTest.php +++ b/tests/app/Census/CensusColumnGivenNamesTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnGivenNames */ -class CensusColumnGivenNamesTest extends \PHPUnit\Framework\TestCase +class CensusColumnGivenNamesTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMarriedWithinYearTest.php index f608d7ff8f..4660c9627b 100644 --- a/tests/app/Census/CensusColumnMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMarriedWithinYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnMarriedWithinYear */ -class CensusColumnMarriedWithinYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php index aaf323613b..b2c7e23cd8 100644 --- a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnMonthIfBornWithinYear */ -class CensusColumnMonthIfBornWithinYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php index 4f8c758671..f3c160761f 100644 --- a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnMonthIfMarriedWithinYear */ -class CensusColumnMonthIfMarriedWithinYearTest extends \PHPUnit\Framework\TestCase +class CensusColumnMonthIfMarriedWithinYearTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php index 4536671131..ca0d4d719a 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnMotherBirthPlaceSimple */ -class CensusColumnMotherBirthPlaceSimpleTest extends \PHPUnit\Framework\TestCase +class CensusColumnMotherBirthPlaceSimpleTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php index cdd379643a..97a1f1b52e 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnMotherBirthPlace */ -class CensusColumnMotherBirthPlaceTest extends \PHPUnit\Framework\TestCase +class CensusColumnMotherBirthPlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php index 9814c6bf59..04cdb83151 100644 --- a/tests/app/Census/CensusColumnMotherForeignTest.php +++ b/tests/app/Census/CensusColumnMotherForeignTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnMotherForeign */ -class CensusColumnMotherForeignTest extends \PHPUnit\Framework\TestCase +class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnNationalityTest.php b/tests/app/Census/CensusColumnNationalityTest.php index 292cf33624..91b121a44b 100644 --- a/tests/app/Census/CensusColumnNationalityTest.php +++ b/tests/app/Census/CensusColumnNationalityTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnNationality */ -class CensusColumnNationalityTest extends \PHPUnit\Framework\TestCase +class CensusColumnNationalityTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnNullTest.php b/tests/app/Census/CensusColumnNullTest.php index d4443ec996..9b3dd801d9 100644 --- a/tests/app/Census/CensusColumnNullTest.php +++ b/tests/app/Census/CensusColumnNullTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnNull */ -class CensusColumnNullTest extends \PHPUnit\Framework\TestCase +class CensusColumnNullTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnOccupationTest.php b/tests/app/Census/CensusColumnOccupationTest.php index cb466af73a..82aea7f9de 100644 --- a/tests/app/Census/CensusColumnOccupationTest.php +++ b/tests/app/Census/CensusColumnOccupationTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnOccupation */ -class CensusColumnOccupationTest extends \PHPUnit\Framework\TestCase +class CensusColumnOccupationTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php index 5c57b38120..b4706d8c4a 100644 --- a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnRelationToHead */ -class CensusColumnRelationToHeadGermanTest extends \PHPUnit\Framework\TestCase +class CensusColumnRelationToHeadGermanTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnRelationToHeadTest.php b/tests/app/Census/CensusColumnRelationToHeadTest.php index 5214daf224..34c0dc3de9 100644 --- a/tests/app/Census/CensusColumnRelationToHeadTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnRelationToHead */ -class CensusColumnRelationToHeadTest extends \PHPUnit\Framework\TestCase +class CensusColumnRelationToHeadTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnReligionTest.php b/tests/app/Census/CensusColumnReligionTest.php index 2a8eca4d8e..ec9f5791f0 100644 --- a/tests/app/Census/CensusColumnReligionTest.php +++ b/tests/app/Census/CensusColumnReligionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnReligion */ -class CensusColumnReligionTest extends \PHPUnit\Framework\TestCase +class CensusColumnReligionTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSexMFTest.php b/tests/app/Census/CensusColumnSexMFTest.php index 67a652e6b4..cc248f920b 100644 --- a/tests/app/Census/CensusColumnSexMFTest.php +++ b/tests/app/Census/CensusColumnSexMFTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSexMF */ -class CensusColumnSexMFTest extends \PHPUnit\Framework\TestCase +class CensusColumnSexMFTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSexMKTest.php b/tests/app/Census/CensusColumnSexMKTest.php index 6e8ac20681..ee7c2bda4a 100644 --- a/tests/app/Census/CensusColumnSexMKTest.php +++ b/tests/app/Census/CensusColumnSexMKTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSexMK */ -class CensusColumnSexMKTest extends \PHPUnit\Framework\TestCase +class CensusColumnSexMKTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSexMZTest.php b/tests/app/Census/CensusColumnSexMZTest.php index e3563b5a8f..9af80185d1 100644 --- a/tests/app/Census/CensusColumnSexMZTest.php +++ b/tests/app/Census/CensusColumnSexMZTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSexMZ */ -class CensusColumnSexMZTest extends \PHPUnit\Framework\TestCase +class CensusColumnSexMZTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php index 48857a632d..8f5dc9940b 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSurnameGivenNameInitial */ -class CensusColumnSurnameGivenNameInitialTest extends \PHPUnit\Framework\TestCase +class CensusColumnSurnameGivenNameInitialTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php index 749a879de5..688a5c250b 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSurnameGivenNames */ -class CensusColumnSurnameGivenNamesTest extends \PHPUnit\Framework\TestCase +class CensusColumnSurnameGivenNamesTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnSurnameTest.php b/tests/app/Census/CensusColumnSurnameTest.php index 72e180b7c3..c55dcb3442 100644 --- a/tests/app/Census/CensusColumnSurnameTest.php +++ b/tests/app/Census/CensusColumnSurnameTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -21,7 +20,7 @@ use Mockery; /** * Test harness for the class CensusColumnSurname */ -class CensusColumnSurnameTest extends \PHPUnit\Framework\TestCase +class CensusColumnSurnameTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusColumnYearsMarriedTest.php b/tests/app/Census/CensusColumnYearsMarriedTest.php index a3e66c1fc3..81772ec7a5 100644 --- a/tests/app/Census/CensusColumnYearsMarriedTest.php +++ b/tests/app/Census/CensusColumnYearsMarriedTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -22,7 +21,7 @@ use Mockery; /** * Test harness for the class CensusColumnYearsMarried */ -class CensusColumnYearsMarriedTest extends \PHPUnit\Framework\TestCase +class CensusColumnYearsMarriedTest extends \Fisharebest\Webtrees\TestCase { /** * Delete mock objects diff --git a/tests/app/Census/CensusOfCzechRepublic1880Test.php b/tests/app/Census/CensusOfCzechRepublic1880Test.php index d105841480..900affe728 100644 --- a/tests/app/Census/CensusOfCzechRepublic1880Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1880Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic1880 */ -class CensusOfCzechRepublic1880Test extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublic1880Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfCzechRepublic1890Test.php b/tests/app/Census/CensusOfCzechRepublic1890Test.php index 98fd40b0b8..1077ff5668 100644 --- a/tests/app/Census/CensusOfCzechRepublic1890Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1890Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic1890 */ -class CensusOfCzechRepublic1890Test extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublic1890Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfCzechRepublic1900Test.php b/tests/app/Census/CensusOfCzechRepublic1900Test.php index 25b61644ae..ce2b4ca9a9 100644 --- a/tests/app/Census/CensusOfCzechRepublic1900Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1900Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic1900 */ -class CensusOfCzechRepublic1900Test extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublic1900Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfCzechRepublic1910Test.php b/tests/app/Census/CensusOfCzechRepublic1910Test.php index bec526fdf6..ea97cdfea2 100644 --- a/tests/app/Census/CensusOfCzechRepublic1910Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1910Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic1910 */ -class CensusOfCzechRepublic1910Test extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublic1910Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfCzechRepublic1921Test.php b/tests/app/Census/CensusOfCzechRepublic1921Test.php index 05d1bad83d..5b81caa314 100644 --- a/tests/app/Census/CensusOfCzechRepublic1921Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1921Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic1921 */ -class CensusOfCzechRepublic1921Test extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublic1921Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfCzechRepublicTest.php b/tests/app/Census/CensusOfCzechRepublicTest.php index c584e27a37..5f8f7f0ef9 100644 --- a/tests/app/Census/CensusOfCzechRepublicTest.php +++ b/tests/app/Census/CensusOfCzechRepublicTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfCzechRepublic */ -class CensusOfCzechRepublicTest extends \PHPUnit\Framework\TestCase +class CensusOfCzechRepublicTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfDenmark1787Test.php b/tests/app/Census/CensusOfDenmark1787Test.php index 2b362dcf01..8f306d3b75 100644 --- a/tests/app/Census/CensusOfDenmark1787Test.php +++ b/tests/app/Census/CensusOfDenmark1787Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1787 */ -class CensusOfDenmark1787Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1787Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1801Test.php b/tests/app/Census/CensusOfDenmark1801Test.php index 0feb128cae..db504b6e45 100644 --- a/tests/app/Census/CensusOfDenmark1801Test.php +++ b/tests/app/Census/CensusOfDenmark1801Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1801 */ -class CensusOfDenmark1801Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1801Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1803Test.php b/tests/app/Census/CensusOfDenmark1803Test.php index a958c2dbb4..7d58d81fd3 100644 --- a/tests/app/Census/CensusOfDenmark1803Test.php +++ b/tests/app/Census/CensusOfDenmark1803Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1803 */ -class CensusOfDenmark1803Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1803Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1834Test.php b/tests/app/Census/CensusOfDenmark1834Test.php index e2c8c8bb7c..f312f94a41 100644 --- a/tests/app/Census/CensusOfDenmark1834Test.php +++ b/tests/app/Census/CensusOfDenmark1834Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1834 */ -class CensusOfDenmark1834Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1834Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1835Test.php b/tests/app/Census/CensusOfDenmark1835Test.php index 6fc8eac19f..62a4f93872 100644 --- a/tests/app/Census/CensusOfDenmark1835Test.php +++ b/tests/app/Census/CensusOfDenmark1835Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1835 */ -class CensusOfDenmark1835Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1835Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1840Test.php b/tests/app/Census/CensusOfDenmark1840Test.php index db872a7e4e..76bfa29120 100644 --- a/tests/app/Census/CensusOfDenmark1840Test.php +++ b/tests/app/Census/CensusOfDenmark1840Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1840 */ -class CensusOfDenmark1840Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1840Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1845Test.php b/tests/app/Census/CensusOfDenmark1845Test.php index 4fc6958f37..a97fcac68c 100644 --- a/tests/app/Census/CensusOfDenmark1845Test.php +++ b/tests/app/Census/CensusOfDenmark1845Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1845 */ -class CensusOfDenmark1845Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1845Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1850Test.php b/tests/app/Census/CensusOfDenmark1850Test.php index ddabf585c9..c7e1c5005d 100644 --- a/tests/app/Census/CensusOfDenmark1850Test.php +++ b/tests/app/Census/CensusOfDenmark1850Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1850 */ -class CensusOfDenmark1850Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1850Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1855Test.php b/tests/app/Census/CensusOfDenmark1855Test.php index 684584b33f..4965e0120b 100644 --- a/tests/app/Census/CensusOfDenmark1855Test.php +++ b/tests/app/Census/CensusOfDenmark1855Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1855 */ -class CensusOfDenmark1855Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1855Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1860Test.php b/tests/app/Census/CensusOfDenmark1860Test.php index 2707cffa03..1e61e72dcd 100644 --- a/tests/app/Census/CensusOfDenmark1860Test.php +++ b/tests/app/Census/CensusOfDenmark1860Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1860 */ -class CensusOfDenmark1860Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1860Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1870Test.php b/tests/app/Census/CensusOfDenmark1870Test.php index 1286c53850..5f49f035f7 100644 --- a/tests/app/Census/CensusOfDenmark1870Test.php +++ b/tests/app/Census/CensusOfDenmark1870Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1870 */ -class CensusOfDenmark1870Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1870Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1880Test.php b/tests/app/Census/CensusOfDenmark1880Test.php index 487caed513..c784d92e20 100644 --- a/tests/app/Census/CensusOfDenmark1880Test.php +++ b/tests/app/Census/CensusOfDenmark1880Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1880 */ -class CensusOfDenmark1880Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1880Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1885Test.php b/tests/app/Census/CensusOfDenmark1885Test.php index 3bf3462023..1f05fe35a3 100644 --- a/tests/app/Census/CensusOfDenmark1885Test.php +++ b/tests/app/Census/CensusOfDenmark1885Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1885 */ -class CensusOfDenmark1885Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1885Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1890Test.php b/tests/app/Census/CensusOfDenmark1890Test.php index 516a38649a..4e302f5c95 100644 --- a/tests/app/Census/CensusOfDenmark1890Test.php +++ b/tests/app/Census/CensusOfDenmark1890Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1890 */ -class CensusOfDenmark1890Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1890Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1901Test.php b/tests/app/Census/CensusOfDenmark1901Test.php index a3a004d2d9..5d29a42a82 100644 --- a/tests/app/Census/CensusOfDenmark1901Test.php +++ b/tests/app/Census/CensusOfDenmark1901Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1901 */ -class CensusOfDenmark1901Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1901Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1906Test.php b/tests/app/Census/CensusOfDenmark1906Test.php index 930f376227..101023637b 100644 --- a/tests/app/Census/CensusOfDenmark1906Test.php +++ b/tests/app/Census/CensusOfDenmark1906Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1906 */ -class CensusOfDenmark1906Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1906Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1911Test.php b/tests/app/Census/CensusOfDenmark1911Test.php index 7195e79bcd..5e545ed6d1 100644 --- a/tests/app/Census/CensusOfDenmark1911Test.php +++ b/tests/app/Census/CensusOfDenmark1911Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1911 */ -class CensusOfDenmark1911Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1911Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1916Test.php b/tests/app/Census/CensusOfDenmark1916Test.php index 96f3cd46e8..6afddb4288 100644 --- a/tests/app/Census/CensusOfDenmark1916Test.php +++ b/tests/app/Census/CensusOfDenmark1916Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1916 */ -class CensusOfDenmark1916Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1916Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1921Test.php b/tests/app/Census/CensusOfDenmark1921Test.php index 15bf1731ab..e8e88a48a8 100644 --- a/tests/app/Census/CensusOfDenmark1921Test.php +++ b/tests/app/Census/CensusOfDenmark1921Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1921 */ -class CensusOfDenmark1921Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1921Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1925Test.php b/tests/app/Census/CensusOfDenmark1925Test.php index 2ef302f53e..39002571cb 100644 --- a/tests/app/Census/CensusOfDenmark1925Test.php +++ b/tests/app/Census/CensusOfDenmark1925Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1925 */ -class CensusOfDenmark1925Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1925Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1930Test.php b/tests/app/Census/CensusOfDenmark1930Test.php index eb6cf1d588..e5500bb9cc 100644 --- a/tests/app/Census/CensusOfDenmark1930Test.php +++ b/tests/app/Census/CensusOfDenmark1930Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1930 */ -class CensusOfDenmark1930Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1930Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmark1940Test.php b/tests/app/Census/CensusOfDenmark1940Test.php index 4b03eae216..31814b8577 100644 --- a/tests/app/Census/CensusOfDenmark1940Test.php +++ b/tests/app/Census/CensusOfDenmark1940Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1930 */ -class CensusOfDenmark1940Test extends \PHPUnit\Framework\TestCase +class CensusOfDenmark1940Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDenmarkTest.php b/tests/app/Census/CensusOfDenmarkTest.php index 9c3a6ad766..769547aa1a 100644 --- a/tests/app/Census/CensusOfDenmarkTest.php +++ b/tests/app/Census/CensusOfDenmarkTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark */ -class CensusOfDenmarkTest extends \PHPUnit\Framework\TestCase +class CensusOfDenmarkTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfDeutschland1819Test.php b/tests/app/Census/CensusOfDeutschland1819Test.php index 2e8ce37c43..62e2383967 100644 --- a/tests/app/Census/CensusOfDeutschland1819Test.php +++ b/tests/app/Census/CensusOfDeutschland1819Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschland1819 */ -class CensusOfDeutschland1819Test extends \PHPUnit\Framework\TestCase +class CensusOfDeutschland1819Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDeutschland1867Test.php b/tests/app/Census/CensusOfDeutschland1867Test.php index c2c1a7ed89..9216ddb5c0 100644 --- a/tests/app/Census/CensusOfDeutschland1867Test.php +++ b/tests/app/Census/CensusOfDeutschland1867Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschland1867 */ -class CensusOfDeutschland1867Test extends \PHPUnit\Framework\TestCase +class CensusOfDeutschland1867Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDeutschland1900Test.php b/tests/app/Census/CensusOfDeutschland1900Test.php index 6a5feeb482..77e70ec668 100644 --- a/tests/app/Census/CensusOfDeutschland1900Test.php +++ b/tests/app/Census/CensusOfDeutschland1900Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschland1900 */ -class CensusOfDeutschland1900Test extends \PHPUnit\Framework\TestCase +class CensusOfDeutschland1900Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDeutschland1919Test.php b/tests/app/Census/CensusOfDeutschland1919Test.php index 5f0b4341c4..503bb1a010 100644 --- a/tests/app/Census/CensusOfDeutschland1919Test.php +++ b/tests/app/Census/CensusOfDeutschland1919Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschland1919 */ -class CensusOfDeutschland1919Test extends \PHPUnit\Framework\TestCase +class CensusOfDeutschland1919Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDeutschlandNL1867Test.php b/tests/app/Census/CensusOfDeutschlandNL1867Test.php index b49ca8d49a..438eb8e06b 100644 --- a/tests/app/Census/CensusOfDeutschlandNL1867Test.php +++ b/tests/app/Census/CensusOfDeutschlandNL1867Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschlandNL1867 */ -class CensusOfDeutschlandNL1867Test extends \PHPUnit\Framework\TestCase +class CensusOfDeutschlandNL1867Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfDeutschlandTest.php b/tests/app/Census/CensusOfDeutschlandTest.php index b5cadc3492..7c934bd15d 100644 --- a/tests/app/Census/CensusOfDeutschlandTest.php +++ b/tests/app/Census/CensusOfDeutschlandTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDeutschland */ -class CensusOfDeutschlandTest extends \PHPUnit\Framework\TestCase +class CensusOfDeutschlandTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfEngland1841Test.php b/tests/app/Census/CensusOfEngland1841Test.php index 823f1ba6a0..5ee4ebf80c 100644 --- a/tests/app/Census/CensusOfEngland1841Test.php +++ b/tests/app/Census/CensusOfEngland1841Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1841 */ -class CensusOfEngland1841Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1841Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1851Test.php b/tests/app/Census/CensusOfEngland1851Test.php index 1ab28a8872..12505ec056 100644 --- a/tests/app/Census/CensusOfEngland1851Test.php +++ b/tests/app/Census/CensusOfEngland1851Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1851 */ -class CensusOfEngland1851Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1851Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1861Test.php b/tests/app/Census/CensusOfEngland1861Test.php index d470953a11..990b27ccbc 100644 --- a/tests/app/Census/CensusOfEngland1861Test.php +++ b/tests/app/Census/CensusOfEngland1861Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1861 */ -class CensusOfEngland1861Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1861Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1871Test.php b/tests/app/Census/CensusOfEngland1871Test.php index 542b94057e..2f47ad3309 100644 --- a/tests/app/Census/CensusOfEngland1871Test.php +++ b/tests/app/Census/CensusOfEngland1871Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1871 */ -class CensusOfEngland1871Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1871Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1881Test.php b/tests/app/Census/CensusOfEngland1881Test.php index 1230d89310..4ec5033bbf 100644 --- a/tests/app/Census/CensusOfEngland1881Test.php +++ b/tests/app/Census/CensusOfEngland1881Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1881 */ -class CensusOfEngland1881Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1881Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1891Test.php b/tests/app/Census/CensusOfEngland1891Test.php index e853ad1d0d..5f33fbbc10 100644 --- a/tests/app/Census/CensusOfEngland1891Test.php +++ b/tests/app/Census/CensusOfEngland1891Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1891 */ -class CensusOfEngland1891Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1891Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1901Test.php b/tests/app/Census/CensusOfEngland1901Test.php index e623a940dc..dbc3fbbada 100644 --- a/tests/app/Census/CensusOfEngland1901Test.php +++ b/tests/app/Census/CensusOfEngland1901Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1901 */ -class CensusOfEngland1901Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1901Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEngland1911Test.php b/tests/app/Census/CensusOfEngland1911Test.php index 7a74b18b8f..da0b79a165 100644 --- a/tests/app/Census/CensusOfEngland1911Test.php +++ b/tests/app/Census/CensusOfEngland1911Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland1911 */ -class CensusOfEngland1911Test extends \PHPUnit\Framework\TestCase +class CensusOfEngland1911Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfEnglandTest.php b/tests/app/Census/CensusOfEnglandTest.php index 9a2441c3d2..b72b9de537 100644 --- a/tests/app/Census/CensusOfEnglandTest.php +++ b/tests/app/Census/CensusOfEnglandTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfEngland */ -class CensusOfEnglandTest extends \PHPUnit\Framework\TestCase +class CensusOfEnglandTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfFrance1831Test.php b/tests/app/Census/CensusOfFrance1831Test.php index bde8ed0414..851c81a5f7 100644 --- a/tests/app/Census/CensusOfFrance1831Test.php +++ b/tests/app/Census/CensusOfFrance1831Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1836 */ -class CensusOfFrance1831Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1831Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1836Test.php b/tests/app/Census/CensusOfFrance1836Test.php index 61e96a55c0..6a243c0d7f 100644 --- a/tests/app/Census/CensusOfFrance1836Test.php +++ b/tests/app/Census/CensusOfFrance1836Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1836 */ -class CensusOfFrance1836Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1836Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1841Test.php b/tests/app/Census/CensusOfFrance1841Test.php index 94329939bb..b44e8e9cc0 100644 --- a/tests/app/Census/CensusOfFrance1841Test.php +++ b/tests/app/Census/CensusOfFrance1841Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1841 */ -class CensusOfFrance1841Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1841Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1846Test.php b/tests/app/Census/CensusOfFrance1846Test.php index 2914b9250e..2dd3df19f3 100644 --- a/tests/app/Census/CensusOfFrance1846Test.php +++ b/tests/app/Census/CensusOfFrance1846Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1846 */ -class CensusOfFrance1846Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1846Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1851Test.php b/tests/app/Census/CensusOfFrance1851Test.php index 57fe306759..a4f81cbd92 100644 --- a/tests/app/Census/CensusOfFrance1851Test.php +++ b/tests/app/Census/CensusOfFrance1851Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1851 */ -class CensusOfFrance1851Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1851Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1856Test.php b/tests/app/Census/CensusOfFrance1856Test.php index a7807c4346..1b14f3c1a2 100644 --- a/tests/app/Census/CensusOfFrance1856Test.php +++ b/tests/app/Census/CensusOfFrance1856Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1856 */ -class CensusOfFrance1856Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1856Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1861Test.php b/tests/app/Census/CensusOfFrance1861Test.php index 50b44a597c..7ecbf9e378 100644 --- a/tests/app/Census/CensusOfFrance1861Test.php +++ b/tests/app/Census/CensusOfFrance1861Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1861 */ -class CensusOfFrance1861Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1861Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1866Test.php b/tests/app/Census/CensusOfFrance1866Test.php index 1e4aee946f..342b840a71 100644 --- a/tests/app/Census/CensusOfFrance1866Test.php +++ b/tests/app/Census/CensusOfFrance1866Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1866 */ -class CensusOfFrance1866Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1866Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1872Test.php b/tests/app/Census/CensusOfFrance1872Test.php index 795ed7e040..33c17240d9 100644 --- a/tests/app/Census/CensusOfFrance1872Test.php +++ b/tests/app/Census/CensusOfFrance1872Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1872 */ -class CensusOfFrance1872Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1872Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1876Test.php b/tests/app/Census/CensusOfFrance1876Test.php index 9d43e33800..f3fed85ef1 100644 --- a/tests/app/Census/CensusOfFrance1876Test.php +++ b/tests/app/Census/CensusOfFrance1876Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1876 */ -class CensusOfFrance1876Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1876Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1881Test.php b/tests/app/Census/CensusOfFrance1881Test.php index efe5b1cdf4..76f2b729b1 100644 --- a/tests/app/Census/CensusOfFrance1881Test.php +++ b/tests/app/Census/CensusOfFrance1881Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1881 */ -class CensusOfFrance1881Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1881Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1886Test.php b/tests/app/Census/CensusOfFrance1886Test.php index a2b1369bf3..6e35d197b0 100644 --- a/tests/app/Census/CensusOfFrance1886Test.php +++ b/tests/app/Census/CensusOfFrance1886Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1886 */ -class CensusOfFrance1886Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1886Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1891Test.php b/tests/app/Census/CensusOfFrance1891Test.php index 6500618c59..0a9de1875a 100644 --- a/tests/app/Census/CensusOfFrance1891Test.php +++ b/tests/app/Census/CensusOfFrance1891Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1891 */ -class CensusOfFrance1891Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1891Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1896Test.php b/tests/app/Census/CensusOfFrance1896Test.php index 0bd094d034..d2b5683c44 100644 --- a/tests/app/Census/CensusOfFrance1896Test.php +++ b/tests/app/Census/CensusOfFrance1896Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1896 */ -class CensusOfFrance1896Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1896Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1901Test.php b/tests/app/Census/CensusOfFrance1901Test.php index c06e1dd224..e60483d76e 100644 --- a/tests/app/Census/CensusOfFrance1901Test.php +++ b/tests/app/Census/CensusOfFrance1901Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1901 */ -class CensusOfFrance1901Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1901Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1906Test.php b/tests/app/Census/CensusOfFrance1906Test.php index b06fe0c078..14a341be3d 100644 --- a/tests/app/Census/CensusOfFrance1906Test.php +++ b/tests/app/Census/CensusOfFrance1906Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1906 */ -class CensusOfFrance1906Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1906Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1911Test.php b/tests/app/Census/CensusOfFrance1911Test.php index 833e56eb93..f3a63d5440 100644 --- a/tests/app/Census/CensusOfFrance1911Test.php +++ b/tests/app/Census/CensusOfFrance1911Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1911 */ -class CensusOfFrance1911Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1911Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1921Test.php b/tests/app/Census/CensusOfFrance1921Test.php index 14eea00419..ca9c455dff 100644 --- a/tests/app/Census/CensusOfFrance1921Test.php +++ b/tests/app/Census/CensusOfFrance1921Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1921 */ -class CensusOfFrance1921Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1921Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1926Test.php b/tests/app/Census/CensusOfFrance1926Test.php index 734d4cd78d..dcc6355547 100644 --- a/tests/app/Census/CensusOfFrance1926Test.php +++ b/tests/app/Census/CensusOfFrance1926Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1926 */ -class CensusOfFrance1926Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1926Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1931Test.php b/tests/app/Census/CensusOfFrance1931Test.php index fd0a59b44b..0b7554f841 100644 --- a/tests/app/Census/CensusOfFrance1931Test.php +++ b/tests/app/Census/CensusOfFrance1931Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1931 */ -class CensusOfFrance1931Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1931Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1936Test.php b/tests/app/Census/CensusOfFrance1936Test.php index c0fc1de754..becf82ecf9 100644 --- a/tests/app/Census/CensusOfFrance1936Test.php +++ b/tests/app/Census/CensusOfFrance1936Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1936 */ -class CensusOfFrance1936Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1936Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFrance1946Test.php b/tests/app/Census/CensusOfFrance1946Test.php index 94a27ade78..01276a1b91 100644 --- a/tests/app/Census/CensusOfFrance1946Test.php +++ b/tests/app/Census/CensusOfFrance1946Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1946 */ -class CensusOfFrance1946Test extends \PHPUnit\Framework\TestCase +class CensusOfFrance1946Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfFranceTest.php b/tests/app/Census/CensusOfFranceTest.php index b7edd018dd..43838a976f 100644 --- a/tests/app/Census/CensusOfFranceTest.php +++ b/tests/app/Census/CensusOfFranceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance */ -class CensusOfFranceTest extends \PHPUnit\Framework\TestCase +class CensusOfFranceTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfScotland1841Test.php b/tests/app/Census/CensusOfScotland1841Test.php index c297019635..82f9aab456 100644 --- a/tests/app/Census/CensusOfScotland1841Test.php +++ b/tests/app/Census/CensusOfScotland1841Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1841 */ -class CensusOfScotland1841Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1841Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1851Test.php b/tests/app/Census/CensusOfScotland1851Test.php index 4447d841ac..0c1e4e1b23 100644 --- a/tests/app/Census/CensusOfScotland1851Test.php +++ b/tests/app/Census/CensusOfScotland1851Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1851 */ -class CensusOfScotland1851Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1851Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1861Test.php b/tests/app/Census/CensusOfScotland1861Test.php index ebfecd411d..6218067652 100644 --- a/tests/app/Census/CensusOfScotland1861Test.php +++ b/tests/app/Census/CensusOfScotland1861Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1861 */ -class CensusOfScotland1861Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1861Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1871Test.php b/tests/app/Census/CensusOfScotland1871Test.php index 8fa000be4b..72be79dbdb 100644 --- a/tests/app/Census/CensusOfScotland1871Test.php +++ b/tests/app/Census/CensusOfScotland1871Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1871 */ -class CensusOfScotland1871Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1871Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1881Test.php b/tests/app/Census/CensusOfScotland1881Test.php index 072e4c5c16..37abc44e55 100644 --- a/tests/app/Census/CensusOfScotland1881Test.php +++ b/tests/app/Census/CensusOfScotland1881Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1881 */ -class CensusOfScotland1881Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1881Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1891Test.php b/tests/app/Census/CensusOfScotland1891Test.php index 013867dfe7..98f689e59c 100644 --- a/tests/app/Census/CensusOfScotland1891Test.php +++ b/tests/app/Census/CensusOfScotland1891Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1891 */ -class CensusOfScotland1891Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1891Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1901Test.php b/tests/app/Census/CensusOfScotland1901Test.php index dd304165b7..1e2c7b5453 100644 --- a/tests/app/Census/CensusOfScotland1901Test.php +++ b/tests/app/Census/CensusOfScotland1901Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1901 */ -class CensusOfScotland1901Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1901Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotland1911Test.php b/tests/app/Census/CensusOfScotland1911Test.php index 5eeb5a816f..5a3431ae10 100644 --- a/tests/app/Census/CensusOfScotland1911Test.php +++ b/tests/app/Census/CensusOfScotland1911Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1911 */ -class CensusOfScotland1911Test extends \PHPUnit\Framework\TestCase +class CensusOfScotland1911Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfScotlandTest.php b/tests/app/Census/CensusOfScotlandTest.php index 43be1c93d8..659a75ef7d 100644 --- a/tests/app/Census/CensusOfScotlandTest.php +++ b/tests/app/Census/CensusOfScotlandTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland */ -class CensusOfScotlandTest extends \PHPUnit\Framework\TestCase +class CensusOfScotlandTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfUnitedStates1790Test.php b/tests/app/Census/CensusOfUnitedStates1790Test.php index 6650d320a2..4fe7f8e291 100644 --- a/tests/app/Census/CensusOfUnitedStates1790Test.php +++ b/tests/app/Census/CensusOfUnitedStates1790Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1790 */ -class CensusOfUnitedStates1790Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1790Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1800Test.php b/tests/app/Census/CensusOfUnitedStates1800Test.php index 2002c0667c..07316f1625 100644 --- a/tests/app/Census/CensusOfUnitedStates1800Test.php +++ b/tests/app/Census/CensusOfUnitedStates1800Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1800 */ -class CensusOfUnitedStates1800Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1800Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1810Test.php b/tests/app/Census/CensusOfUnitedStates1810Test.php index aed5e7ce22..b5365e188e 100644 --- a/tests/app/Census/CensusOfUnitedStates1810Test.php +++ b/tests/app/Census/CensusOfUnitedStates1810Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1810 */ -class CensusOfUnitedStates1810Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1810Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1820Test.php b/tests/app/Census/CensusOfUnitedStates1820Test.php index 299f203843..a87e584797 100644 --- a/tests/app/Census/CensusOfUnitedStates1820Test.php +++ b/tests/app/Census/CensusOfUnitedStates1820Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1820 */ -class CensusOfUnitedStates1820Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1820Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1830Test.php b/tests/app/Census/CensusOfUnitedStates1830Test.php index c21348056c..d1618b3a71 100644 --- a/tests/app/Census/CensusOfUnitedStates1830Test.php +++ b/tests/app/Census/CensusOfUnitedStates1830Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1830 */ -class CensusOfUnitedStates1830Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1830Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1840Test.php b/tests/app/Census/CensusOfUnitedStates1840Test.php index 79cea50888..e793684491 100644 --- a/tests/app/Census/CensusOfUnitedStates1840Test.php +++ b/tests/app/Census/CensusOfUnitedStates1840Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1840 */ -class CensusOfUnitedStates1840Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1840Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1850Test.php b/tests/app/Census/CensusOfUnitedStates1850Test.php index 1a6f447415..3771e97707 100644 --- a/tests/app/Census/CensusOfUnitedStates1850Test.php +++ b/tests/app/Census/CensusOfUnitedStates1850Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1850 */ -class CensusOfUnitedStates1850Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1850Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1860Test.php b/tests/app/Census/CensusOfUnitedStates1860Test.php index e701dd38ac..7db8dd6e75 100644 --- a/tests/app/Census/CensusOfUnitedStates1860Test.php +++ b/tests/app/Census/CensusOfUnitedStates1860Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1860 */ -class CensusOfUnitedStates1860Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1860Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1870Test.php b/tests/app/Census/CensusOfUnitedStates1870Test.php index d86f5841aa..ca95752663 100644 --- a/tests/app/Census/CensusOfUnitedStates1870Test.php +++ b/tests/app/Census/CensusOfUnitedStates1870Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1870 */ -class CensusOfUnitedStates1870Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1870Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1880Test.php b/tests/app/Census/CensusOfUnitedStates1880Test.php index 1f5da5e698..f43ba06c75 100644 --- a/tests/app/Census/CensusOfUnitedStates1880Test.php +++ b/tests/app/Census/CensusOfUnitedStates1880Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1880 */ -class CensusOfUnitedStates1880Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1880Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1890Test.php b/tests/app/Census/CensusOfUnitedStates1890Test.php index 1a0d07e07e..c0bb8c781e 100644 --- a/tests/app/Census/CensusOfUnitedStates1890Test.php +++ b/tests/app/Census/CensusOfUnitedStates1890Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1890 */ -class CensusOfUnitedStates1890Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1890Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1900Test.php b/tests/app/Census/CensusOfUnitedStates1900Test.php index c7d5f60c45..ce7817fb32 100644 --- a/tests/app/Census/CensusOfUnitedStates1900Test.php +++ b/tests/app/Census/CensusOfUnitedStates1900Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1900 */ -class CensusOfUnitedStates1900Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1900Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1910Test.php b/tests/app/Census/CensusOfUnitedStates1910Test.php index 3652dc04db..425e53b573 100644 --- a/tests/app/Census/CensusOfUnitedStates1910Test.php +++ b/tests/app/Census/CensusOfUnitedStates1910Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1910 */ -class CensusOfUnitedStates1910Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1910Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1920Test.php b/tests/app/Census/CensusOfUnitedStates1920Test.php index db373ac734..8d130c0860 100644 --- a/tests/app/Census/CensusOfUnitedStates1920Test.php +++ b/tests/app/Census/CensusOfUnitedStates1920Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1920 */ -class CensusOfUnitedStates1920Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1920Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1930Test.php b/tests/app/Census/CensusOfUnitedStates1930Test.php index b80915f8a4..9ac6838717 100644 --- a/tests/app/Census/CensusOfUnitedStates1930Test.php +++ b/tests/app/Census/CensusOfUnitedStates1930Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1930 */ -class CensusOfUnitedStates1930Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1930Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStates1940Test.php b/tests/app/Census/CensusOfUnitedStates1940Test.php index 4e6f2db54d..6288d27030 100644 --- a/tests/app/Census/CensusOfUnitedStates1940Test.php +++ b/tests/app/Census/CensusOfUnitedStates1940Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1940 */ -class CensusOfUnitedStates1940Test extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStates1940Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfUnitedStatesTest.php b/tests/app/Census/CensusOfUnitedStatesTest.php index 292c7fedec..b85ed62d8d 100644 --- a/tests/app/Census/CensusOfUnitedStatesTest.php +++ b/tests/app/Census/CensusOfUnitedStatesTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates */ -class CensusOfUnitedStatesTest extends \PHPUnit\Framework\TestCase +class CensusOfUnitedStatesTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusOfWales1841Test.php b/tests/app/Census/CensusOfWales1841Test.php index 0d2732578d..89d6f645e8 100644 --- a/tests/app/Census/CensusOfWales1841Test.php +++ b/tests/app/Census/CensusOfWales1841Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1841 */ -class CensusOfWales1841Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1841Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1851Test.php b/tests/app/Census/CensusOfWales1851Test.php index 0914bf6d0b..8bbac63794 100644 --- a/tests/app/Census/CensusOfWales1851Test.php +++ b/tests/app/Census/CensusOfWales1851Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1851 */ -class CensusOfWales1851Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1851Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1861Test.php b/tests/app/Census/CensusOfWales1861Test.php index 9e8751f50b..f7d1900841 100644 --- a/tests/app/Census/CensusOfWales1861Test.php +++ b/tests/app/Census/CensusOfWales1861Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1861 */ -class CensusOfWales1861Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1861Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1871Test.php b/tests/app/Census/CensusOfWales1871Test.php index be6dc8f380..acab3a11b9 100644 --- a/tests/app/Census/CensusOfWales1871Test.php +++ b/tests/app/Census/CensusOfWales1871Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1871 */ -class CensusOfWales1871Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1871Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1881Test.php b/tests/app/Census/CensusOfWales1881Test.php index af89b43a43..b55cfc577d 100644 --- a/tests/app/Census/CensusOfWales1881Test.php +++ b/tests/app/Census/CensusOfWales1881Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1881 */ -class CensusOfWales1881Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1881Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1891Test.php b/tests/app/Census/CensusOfWales1891Test.php index 01fecefb9c..3ef3b49130 100644 --- a/tests/app/Census/CensusOfWales1891Test.php +++ b/tests/app/Census/CensusOfWales1891Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1891 */ -class CensusOfWales1891Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1891Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1901Test.php b/tests/app/Census/CensusOfWales1901Test.php index 6fd6052b1f..3496aed610 100644 --- a/tests/app/Census/CensusOfWales1901Test.php +++ b/tests/app/Census/CensusOfWales1901Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1901 */ -class CensusOfWales1901Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1901Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWales1911Test.php b/tests/app/Census/CensusOfWales1911Test.php index 031d7cf531..ca04a62173 100644 --- a/tests/app/Census/CensusOfWales1911Test.php +++ b/tests/app/Census/CensusOfWales1911Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales1911 */ -class CensusOfWales1911Test extends \PHPUnit\Framework\TestCase +class CensusOfWales1911Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/CensusOfWalesTest.php b/tests/app/Census/CensusOfWalesTest.php index 3abbe36a6e..fec6a3b802 100644 --- a/tests/app/Census/CensusOfWalesTest.php +++ b/tests/app/Census/CensusOfWalesTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfWales */ -class CensusOfWalesTest extends \PHPUnit\Framework\TestCase +class CensusOfWalesTest extends \Fisharebest\Webtrees\TestCase { /** * Test the census place diff --git a/tests/app/Census/CensusTest.php b/tests/app/Census/CensusTest.php index 9c227d734e..ace3a5b44d 100644 --- a/tests/app/Census/CensusTest.php +++ b/tests/app/Census/CensusTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusColumnAgeFemale5Years */ -class CensusTest extends \PHPUnit\Framework\TestCase +class CensusTest extends \Fisharebest\Webtrees\TestCase { /** * @covers \Fisharebest\Webtrees\Census\Census diff --git a/tests/app/Census/RegisterOfEngland1939Test.php b/tests/app/Census/RegisterOfEngland1939Test.php index f5da06ed79..f3d9071f81 100644 --- a/tests/app/Census/RegisterOfEngland1939Test.php +++ b/tests/app/Census/RegisterOfEngland1939Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class RegisterOfEngland1939 */ -class RegisterOfEngland1939Test extends \PHPUnit\Framework\TestCase +class RegisterOfEngland1939Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/Census/RegisterOfWales1939Test.php b/tests/app/Census/RegisterOfWales1939Test.php index 62ae50b4be..031b7d284d 100644 --- a/tests/app/Census/RegisterOfWales1939Test.php +++ b/tests/app/Census/RegisterOfWales1939Test.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -19,7 +18,7 @@ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class RegisterOfWales1939 */ -class RegisterOfWales1939Test extends \PHPUnit\Framework\TestCase +class RegisterOfWales1939Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date diff --git a/tests/app/DatabaseTest.php b/tests/app/DatabaseTest.php index 1e2a3b5ae8..1da3e7da1d 100644 --- a/tests/app/DatabaseTest.php +++ b/tests/app/DatabaseTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Statement */ -class DatabaseTest extends \PHPUnit\Framework\TestCase +class DatabaseTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/CalendarDateTest.php b/tests/app/Date/CalendarDateTest.php index cbe8e71b12..67b3fbbf5b 100644 --- a/tests/app/Date/CalendarDateTest.php +++ b/tests/app/Date/CalendarDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class CalendarDate */ -class CalendarDateTest extends \PHPUnit\Framework\TestCase +class CalendarDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/FrenchDateTest.php b/tests/app/Date/FrenchDateTest.php index 135cfe6fa2..9c70feacc3 100644 --- a/tests/app/Date/FrenchDateTest.php +++ b/tests/app/Date/FrenchDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class FrenchDate */ -class FrenchDateTest extends \PHPUnit\Framework\TestCase +class FrenchDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/GregorianDateTest.php b/tests/app/Date/GregorianDateTest.php index 79ff1afe04..4c5c0a91e5 100644 --- a/tests/app/Date/GregorianDateTest.php +++ b/tests/app/Date/GregorianDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class GregorianDate */ -class GregorianDateTest extends \PHPUnit\Framework\TestCase +class GregorianDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/HijriDateTest.php b/tests/app/Date/HijriDateTest.php index fe206647f9..642630dbd0 100644 --- a/tests/app/Date/HijriDateTest.php +++ b/tests/app/Date/HijriDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class \HijriDate */ -class HijriDateTest extends \PHPUnit\Framework\TestCase +class HijriDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/JalaliDateTest.php b/tests/app/Date/JalaliDateTest.php index 16428c0132..d72422d952 100644 --- a/tests/app/Date/JalaliDateTest.php +++ b/tests/app/Date/JalaliDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class JalaliDate */ -class JalaliDateTest extends \PHPUnit\Framework\TestCase +class JalaliDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/JewishDateTest.php b/tests/app/Date/JewishDateTest.php index 3f433fbb59..90d9b5cc1c 100644 --- a/tests/app/Date/JewishDateTest.php +++ b/tests/app/Date/JewishDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class JewishDate */ -class JewishDateTest extends \PHPUnit\Framework\TestCase +class JewishDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/JulianDateTest.php b/tests/app/Date/JulianDateTest.php index 26afb3ec4a..ebe70a63ad 100644 --- a/tests/app/Date/JulianDateTest.php +++ b/tests/app/Date/JulianDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class JulianDate */ -class JulianDateTest extends \PHPUnit\Framework\TestCase +class JulianDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Date/RomanDateTest.php b/tests/app/Date/RomanDateTest.php index 8c90eecb31..6e6f7d85ad 100644 --- a/tests/app/Date/RomanDateTest.php +++ b/tests/app/Date/RomanDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Date; /** * Test harness for the class RomanDate */ -class RomanDateTest extends \PHPUnit\Framework\TestCase +class RomanDateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/DateTest.php b/tests/app/DateTest.php index 34e9eeec8e..45cb710518 100644 --- a/tests/app/DateTest.php +++ b/tests/app/DateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Date */ -class DateTest extends \PHPUnit\Framework\TestCase +class DateTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/FactTest.php b/tests/app/FactTest.php index 006c05ab80..fafd01c1c0 100644 --- a/tests/app/FactTest.php +++ b/tests/app/FactTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Fact */ -class FactTest extends \PHPUnit\Framework\TestCase +class FactTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/FamilyTest.php b/tests/app/FamilyTest.php index 5c19d16151..2260b9c1a9 100644 --- a/tests/app/FamilyTest.php +++ b/tests/app/FamilyTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Family */ -class FamilyTest extends \PHPUnit\Framework\TestCase +class FamilyTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/FileTest.php b/tests/app/FileTest.php index e0c9fd2fe8..83d0a4c86c 100644 --- a/tests/app/FileTest.php +++ b/tests/app/FileTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class File */ -class FileTest extends \PHPUnit\Framework\TestCase +class FileTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/FilterTest.php b/tests/app/FilterTest.php index 927aac815e..223da4d97b 100644 --- a/tests/app/FilterTest.php +++ b/tests/app/FilterTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Filter */ -class FilterTest extends \PHPUnit\Framework\TestCase +class FilterTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/FlashMessagesTest.php b/tests/app/FlashMessagesTest.php index 441804a0c1..166226e490 100644 --- a/tests/app/FlashMessagesTest.php +++ b/tests/app/FlashMessagesTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class FlashMessages */ -class FlashMessagesTest extends \PHPUnit\Framework\TestCase +class FlashMessagesTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Functions/FunctionsChartsTest.php b/tests/app/Functions/FunctionsChartsTest.php index 309ac540ae..e935a5e3f5 100644 --- a/tests/app/Functions/FunctionsChartsTest.php +++ b/tests/app/Functions/FunctionsChartsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_charts.php */ -class FunctionsChartsTest extends \PHPUnit\Framework\TestCase +class FunctionsChartsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsDateTest.php b/tests/app/Functions/FunctionsDateTest.php index b3111dc5cb..899d956c66 100644 --- a/tests/app/Functions/FunctionsDateTest.php +++ b/tests/app/Functions/FunctionsDateTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_date.php */ -class FunctionsDateTest extends \PHPUnit\Framework\TestCase +class FunctionsDateTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsDbTest.php b/tests/app/Functions/FunctionsDbTest.php index c832771620..0927fde783 100644 --- a/tests/app/Functions/FunctionsDbTest.php +++ b/tests/app/Functions/FunctionsDbTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_db.php */ -class FunctionsDbTest extends \PHPUnit\Framework\TestCase +class FunctionsDbTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsEditTest.php b/tests/app/Functions/FunctionsEditTest.php index ab9ec24440..b6a8e3c62c 100644 --- a/tests/app/Functions/FunctionsEditTest.php +++ b/tests/app/Functions/FunctionsEditTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_edit.php */ -class FunctionsEditTest extends \PHPUnit\Framework\TestCase +class FunctionsEditTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsExportTest.php b/tests/app/Functions/FunctionsExportTest.php index f99abc113f..bd37e24353 100644 --- a/tests/app/Functions/FunctionsExportTest.php +++ b/tests/app/Functions/FunctionsExportTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_export.php */ -class FunctionsExportTest extends \PHPUnit\Framework\TestCase +class FunctionsExportTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsImportTest.php b/tests/app/Functions/FunctionsImportTest.php index 3405cb4252..85a6db0275 100644 --- a/tests/app/Functions/FunctionsImportTest.php +++ b/tests/app/Functions/FunctionsImportTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_import.php */ -class FunctionsImportTest extends \PHPUnit\Framework\TestCase +class FunctionsImportTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsPrintFactsTest.php b/tests/app/Functions/FunctionsPrintFactsTest.php index b1e89b11ce..f9f4cacdad 100644 --- a/tests/app/Functions/FunctionsPrintFactsTest.php +++ b/tests/app/Functions/FunctionsPrintFactsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_print_facts.php */ -class FunctionsPrintFactsTest extends \PHPUnit\Framework\TestCase +class FunctionsPrintFactsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsPrintListsTest.php b/tests/app/Functions/FunctionsPrintListsTest.php index d110c04b65..83df686dd7 100644 --- a/tests/app/Functions/FunctionsPrintListsTest.php +++ b/tests/app/Functions/FunctionsPrintListsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_print_lists.php */ -class FunctionsPrintListsTest extends \PHPUnit\Framework\TestCase +class FunctionsPrintListsTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsPrintTest.php b/tests/app/Functions/FunctionsPrintTest.php index 586b305f7d..33fbeb0c99 100644 --- a/tests/app/Functions/FunctionsPrintTest.php +++ b/tests/app/Functions/FunctionsPrintTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_print.php */ -class FunctionsPrintTest extends \PHPUnit\Framework\TestCase +class FunctionsPrintTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Functions/FunctionsRtlTest.php b/tests/app/Functions/FunctionsRtlTest.php index 451c7f0a12..3f18e05e7f 100644 --- a/tests/app/Functions/FunctionsRtlTest.php +++ b/tests/app/Functions/FunctionsRtlTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Functions; /** * Unit tests for the global functions in the file includes/functions/functions_rtl.php */ -class FunctionsRtlTest extends \PHPUnit\Framework\TestCase +class FunctionsRtlTest extends \Fisharebest\Webtrees\TestCase { /** * Test that the class exists diff --git a/tests/app/Gedcom/GedcomCodeAdopTest.php b/tests/app/GedcomCode/GedcomCodeAdopTest.php index 4b8ca7c7d0..3e156d6aa7 100644 --- a/tests/app/Gedcom/GedcomCodeAdopTest.php +++ b/tests/app/GedcomCode/GedcomCodeAdopTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeAdop */ -class GedcomCodeAdopTest extends \PHPUnit\Framework\TestCase +class GedcomCodeAdopTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodeNameTest.php b/tests/app/GedcomCode/GedcomCodeNameTest.php index 79b5161f09..00eb07fd24 100644 --- a/tests/app/Gedcom/GedcomCodeNameTest.php +++ b/tests/app/GedcomCode/GedcomCodeNameTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeName */ -class GedcomCodeNameTest extends \PHPUnit\Framework\TestCase +class GedcomCodeNameTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodePediTest.php b/tests/app/GedcomCode/GedcomCodePediTest.php index 649c68c1a2..e12a1c8178 100644 --- a/tests/app/Gedcom/GedcomCodePediTest.php +++ b/tests/app/GedcomCode/GedcomCodePediTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodePedi */ -class GedcomCodePediTest extends \PHPUnit\Framework\TestCase +class GedcomCodePediTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodeQuayTest.php b/tests/app/GedcomCode/GedcomCodeQuayTest.php index abb37e87ca..0f861c44e6 100644 --- a/tests/app/Gedcom/GedcomCodeQuayTest.php +++ b/tests/app/GedcomCode/GedcomCodeQuayTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeQuay */ -class GedcomCodeQuayTest extends \PHPUnit\Framework\TestCase +class GedcomCodeQuayTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodeRelaTest.php b/tests/app/GedcomCode/GedcomCodeRelaTest.php index b9b55747dc..92a60b9b6b 100644 --- a/tests/app/Gedcom/GedcomCodeRelaTest.php +++ b/tests/app/GedcomCode/GedcomCodeRelaTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeRela */ -class GedcomCodeRelaTest extends \PHPUnit\Framework\TestCase +class GedcomCodeRelaTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodeStatTest.php b/tests/app/GedcomCode/GedcomCodeStatTest.php index 98da634130..c8a2ba0ccd 100644 --- a/tests/app/Gedcom/GedcomCodeStatTest.php +++ b/tests/app/GedcomCode/GedcomCodeStatTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeStat */ -class GedcomCodeStatTest extends \PHPUnit\Framework\TestCase +class GedcomCodeStatTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Gedcom/GedcomCodeTempTest.php b/tests/app/GedcomCode/GedcomCodeTempTest.php index 435518d94d..275a2f70c9 100644 --- a/tests/app/Gedcom/GedcomCodeTempTest.php +++ b/tests/app/GedcomCode/GedcomCodeTempTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\GedcomCode; /** * Test harness for the class GedcomCodeTemp */ -class GedcomCodeTempTest extends \PHPUnit\Framework\TestCase +class GedcomCodeTempTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/GedcomRecordTest.php b/tests/app/GedcomRecordTest.php index 2e0cdb5474..4106a05b2d 100644 --- a/tests/app/GedcomRecordTest.php +++ b/tests/app/GedcomRecordTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class GedcomRecord */ -class GedcomRecordTest extends \PHPUnit\Framework\TestCase +class GedcomRecordTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/GedcomTagTest.php b/tests/app/GedcomTagTest.php index f2b8e8c4ad..7a29499f32 100644 --- a/tests/app/GedcomTagTest.php +++ b/tests/app/GedcomTagTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class GedcomTag */ -class GedcomTagTest extends \PHPUnit\Framework\TestCase +class GedcomTagTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/I18NTest.php b/tests/app/I18NTest.php index e5bd783b45..e5ea3f558d 100644 --- a/tests/app/I18NTest.php +++ b/tests/app/I18NTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,13 +13,14 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\I18N; /** * Test harness for the class I18N */ -class I18NTest extends \PHPUnit\Framework\TestCase +class I18NTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/IndividualTest.php b/tests/app/IndividualTest.php index 93961243a3..6cbe976c04 100644 --- a/tests/app/IndividualTest.php +++ b/tests/app/IndividualTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Individual */ -class IndividualTest extends \PHPUnit\Framework\TestCase +class IndividualTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/LogTest.php b/tests/app/LogTest.php index 5231c34931..e6c8c8203a 100644 --- a/tests/app/LogTest.php +++ b/tests/app/LogTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class WT_Log */ -class LogTest extends \PHPUnit\Framework\TestCase +class LogTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/MailTest.php b/tests/app/MailTest.php index 89a020f393..17e7f96b35 100644 --- a/tests/app/MailTest.php +++ b/tests/app/MailTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Mail */ -class MailTest extends \PHPUnit\Framework\TestCase +class MailTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/MediaTest.php b/tests/app/MediaTest.php index 3d3dad32e5..88b1552128 100644 --- a/tests/app/MediaTest.php +++ b/tests/app/MediaTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Media */ -class MediaTest extends \PHPUnit\Framework\TestCase +class MediaTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/MenuTest.php b/tests/app/MenuTest.php index 9165231ec8..57939db7c7 100644 --- a/tests/app/MenuTest.php +++ b/tests/app/MenuTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,13 +13,14 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\Menu; /** * Test harness for the class Menu */ -class MenuTest extends \PHPUnit\Framework\TestCase +class MenuTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests. diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php index c5e11dbe2c..637ad27e3f 100644 --- a/tests/app/Module/AhnentafelReportModuleTest.php +++ b/tests/app/Module/AhnentafelReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class AhnentafelReportModule */ -class AhnentafelReportModuleTest extends \PHPUnit\Framework\TestCase +class AhnentafelReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/AlbumModuleTest.php b/tests/app/Module/AlbumModuleTest.php index 730d85e26b..a084f4ba55 100644 --- a/tests/app/Module/AlbumModuleTest.php +++ b/tests/app/Module/AlbumModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class AlbumModule */ -class AlbumModuleTest extends \PHPUnit\Framework\TestCase +class AlbumModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/AncestorsChartModuleTest.php b/tests/app/Module/AncestorsChartModuleTest.php index 3467ab03bf..f2b9bc9514 100644 --- a/tests/app/Module/AncestorsChartModuleTest.php +++ b/tests/app/Module/AncestorsChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class AncestorsChartModule */ -class AncestorsChartModuleTest extends \PHPUnit\Framework\TestCase +class AncestorsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php index b5ccb9b84e..100a8e72d7 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateBasePlugin */ -class BatchUpdateBasePluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateBasePluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php index 64c70be8bd..e609b3cc39 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateDuplicateLinksPlugin */ -class BatchUpdateDuplicateLinksPluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateDuplicateLinksPluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php index 04191488b2..56a720221b 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateMarriedNamesPlugin */ -class BatchUpdateMarriedNamesPluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateMarriedNamesPluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php index 73e66fdfb1..51ffb71f8d 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateMissingDeathPlugin */ -class BatchUpdateMissingDeathPluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateMissingDeathPluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php index d5ef8571c2..3b310ac925 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateNameFormatPlugin */ -class BatchUpdateNameFormatPluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateNameFormatPluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php index 1a9a0851cf..5b72b66b33 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; /** * Test harness for the class BatchUpdateSearchReplacePlugin */ -class BatchUpdateSearchReplacePluginTest extends \PHPUnit\Framework\TestCase +class BatchUpdateSearchReplacePluginTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BatchUpdateModuleTest.php b/tests/app/Module/BatchUpdateModuleTest.php index d6f027e267..3c3e6f24a5 100644 --- a/tests/app/Module/BatchUpdateModuleTest.php +++ b/tests/app/Module/BatchUpdateModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class BatchUpdateModule */ -class BatchUpdateModuleTest extends \PHPUnit\Framework\TestCase +class BatchUpdateModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BirthDeathMarriageReportModuleTest.php index 85a2b5b3f6..e7aaaf5a8d 100644 --- a/tests/app/Module/BirthDeathMarriageReportModuleTest.php +++ b/tests/app/Module/BirthDeathMarriageReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class BirthDeathMarriageReportModule */ -class BirthDeathMarriageReportModuleTest extends \PHPUnit\Framework\TestCase +class BirthDeathMarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php index c8c838d7f4..452fc11700 100644 --- a/tests/app/Module/BirthReportModuleTest.php +++ b/tests/app/Module/BirthReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class BirthReportModule */ -class BirthReportModuleTest extends \PHPUnit\Framework\TestCase +class BirthReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php index 594bb8ea71..93d032228f 100644 --- a/tests/app/Module/CemeteryReportModuleTest.php +++ b/tests/app/Module/CemeteryReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class CemeteryReportModule */ -class CemeteryReportModuleTest extends \PHPUnit\Framework\TestCase +class CemeteryReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/CensusAssistantModuleTest.php b/tests/app/Module/CensusAssistantModuleTest.php index 8cb8dc57e6..7343ac966b 100644 --- a/tests/app/Module/CensusAssistantModuleTest.php +++ b/tests/app/Module/CensusAssistantModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class CensusAssistantModule */ -class CensusAssistantModuleTest extends \PHPUnit\Framework\TestCase +class CensusAssistantModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php index 6bc9981e5e..7ce31ed30d 100644 --- a/tests/app/Module/ChangeReportModuleTest.php +++ b/tests/app/Module/ChangeReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ChangeReportModule */ -class ChangeReportModuleTest extends \PHPUnit\Framework\TestCase +class ChangeReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ChartsBlockModuleTest.php b/tests/app/Module/ChartsBlockModuleTest.php index 33f992b6a7..77c3b829c8 100644 --- a/tests/app/Module/ChartsBlockModuleTest.php +++ b/tests/app/Module/ChartsBlockModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ChartsBlockModule */ -class ChartsBlockModuleTest extends \PHPUnit\Framework\TestCase +class ChartsBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/CkeditorModuleTest.php b/tests/app/Module/CkeditorModuleTest.php index b14539e97e..cb764aa12d 100644 --- a/tests/app/Module/CkeditorModuleTest.php +++ b/tests/app/Module/CkeditorModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class CkeditorModule */ -class CkeditorModuleTest extends \PHPUnit\Framework\TestCase +class CkeditorModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ClippingsCartModuleTest.php b/tests/app/Module/ClippingsCartModuleTest.php index a2f50ab5f7..a6f28b783a 100644 --- a/tests/app/Module/ClippingsCartModuleTest.php +++ b/tests/app/Module/ClippingsCartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ClippingsCartModule */ -class ClippingsCartModuleTest extends \PHPUnit\Framework\TestCase +class ClippingsCartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/CompactTreeChartModuleTest.php b/tests/app/Module/CompactTreeChartModuleTest.php index ec7c9ffbe4..f338b1f80a 100644 --- a/tests/app/Module/CompactTreeChartModuleTest.php +++ b/tests/app/Module/CompactTreeChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class CompactTreeChartModule */ -class CompactTreeChartModuleTest extends \PHPUnit\Framework\TestCase +class CompactTreeChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php index 82ece3960e..46301a61d6 100644 --- a/tests/app/Module/DeathReportModuleTest.php +++ b/tests/app/Module/DeathReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class DeathReportModule */ -class DeathReportModuleTest extends \PHPUnit\Framework\TestCase +class DeathReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/DescendancyChartModuleTest.php b/tests/app/Module/DescendancyChartModuleTest.php index c34f4cfd94..4314a4e797 100644 --- a/tests/app/Module/DescendancyChartModuleTest.php +++ b/tests/app/Module/DescendancyChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class DescendancyChartModule */ -class DescendancyChartModuleTest extends \PHPUnit\Framework\TestCase +class DescendancyChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/DescendancyModuleTest.php b/tests/app/Module/DescendancyModuleTest.php index ded7dd55b6..41bd5d5505 100644 --- a/tests/app/Module/DescendancyModuleTest.php +++ b/tests/app/Module/DescendancyModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class DescendancyModule */ -class DescendancyModuleTest extends \PHPUnit\Framework\TestCase +class DescendancyModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php index a5fcd7c949..07e4107b51 100644 --- a/tests/app/Module/DescendancyReportModuleTest.php +++ b/tests/app/Module/DescendancyReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class DescendancyReportModule */ -class DescendancyReportModuleTest extends \PHPUnit\Framework\TestCase +class DescendancyReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ExtraInformationModuleTest.php b/tests/app/Module/ExtraInformationModuleTest.php index 11bcef6c6b..e7e63153ce 100644 --- a/tests/app/Module/ExtraInformationModuleTest.php +++ b/tests/app/Module/ExtraInformationModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ExtraInformationModule */ -class ExtraInformationModuleTest extends \PHPUnit\Framework\TestCase +class ExtraInformationModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php index f1c3d71986..610aeb4050 100644 --- a/tests/app/Module/FactSourcesReportModuleTest.php +++ b/tests/app/Module/FactSourcesReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FactSourcesReportModule */ -class FactSourcesReportModuleTest extends \PHPUnit\Framework\TestCase +class FactSourcesReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyBookChartModuleTest.php b/tests/app/Module/FamilyBookChartModuleTest.php index 9e0accba8d..a2dca3e7a7 100644 --- a/tests/app/Module/FamilyBookChartModuleTest.php +++ b/tests/app/Module/FamilyBookChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyBookChartModule */ -class FamilyBookChartModuleTest extends \PHPUnit\Framework\TestCase +class FamilyBookChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php index 5129a8ea21..c5ccab0dd3 100644 --- a/tests/app/Module/FamilyGroupReportModuleTest.php +++ b/tests/app/Module/FamilyGroupReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyGroupReportModule */ -class FamilyGroupReportModuleTest extends \PHPUnit\Framework\TestCase +class FamilyGroupReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyNavigatorModuleTest.php b/tests/app/Module/FamilyNavigatorModuleTest.php index 8dc27b6e2c..6ebe62ac3a 100644 --- a/tests/app/Module/FamilyNavigatorModuleTest.php +++ b/tests/app/Module/FamilyNavigatorModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyNavigatorModule */ -class FamilyNavigatorModuleTest extends \PHPUnit\Framework\TestCase +class FamilyNavigatorModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyTreeFavoritesModuleTest.php b/tests/app/Module/FamilyTreeFavoritesModuleTest.php index b1cbf4c3ed..e3497f28c1 100644 --- a/tests/app/Module/FamilyTreeFavoritesModuleTest.php +++ b/tests/app/Module/FamilyTreeFavoritesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyTreeFavoritesModule */ -class FamilyTreeFavoritesModuleTest extends \PHPUnit\Framework\TestCase +class FamilyTreeFavoritesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyTreeNewsModuleTest.php b/tests/app/Module/FamilyTreeNewsModuleTest.php index d6956bc09e..1953d3750a 100644 --- a/tests/app/Module/FamilyTreeNewsModuleTest.php +++ b/tests/app/Module/FamilyTreeNewsModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyTreeNewsModule */ -class FamilyTreeNewsModuleTest extends \PHPUnit\Framework\TestCase +class FamilyTreeNewsModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FamilyTreeStatisticsModuleTest.php b/tests/app/Module/FamilyTreeStatisticsModuleTest.php index 24631a1dc1..ff0f4d0a92 100644 --- a/tests/app/Module/FamilyTreeStatisticsModuleTest.php +++ b/tests/app/Module/FamilyTreeStatisticsModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FamilyTreeStatisticsModule */ -class FamilyTreeStatisticsModuleTest extends \PHPUnit\Framework\TestCase +class FamilyTreeStatisticsModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FanChartModuleTest.php b/tests/app/Module/FanChartModuleTest.php index 1d51c10d2f..29853320a3 100644 --- a/tests/app/Module/FanChartModuleTest.php +++ b/tests/app/Module/FanChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FanChartModule */ -class FanChartModuleTest extends \PHPUnit\Framework\TestCase +class FanChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php index d9b9ed5134..65dae34406 100644 --- a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php +++ b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class FrequentlyAskedQuestionsModule */ -class FrequentlyAskedQuestionsModuleTest extends \PHPUnit\Framework\TestCase +class FrequentlyAskedQuestionsModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/HourglassChartModuleTest.php b/tests/app/Module/HourglassChartModuleTest.php index 2d05409576..c8a78d72d7 100644 --- a/tests/app/Module/HourglassChartModuleTest.php +++ b/tests/app/Module/HourglassChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class HourglassChartModule */ -class HourglassChartModuleTest extends \PHPUnit\Framework\TestCase +class HourglassChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/HtmlBlockModuleTest.php b/tests/app/Module/HtmlBlockModuleTest.php index 0d0f6b3539..9d4698ffdb 100644 --- a/tests/app/Module/HtmlBlockModuleTest.php +++ b/tests/app/Module/HtmlBlockModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class HtmlBlockModule */ -class HtmlBlockModuleTest extends \PHPUnit\Framework\TestCase +class HtmlBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/IndividualFactsTabModuleTest.php b/tests/app/Module/IndividualFactsTabModuleTest.php index 251dd2e383..e198a91ec8 100644 --- a/tests/app/Module/IndividualFactsTabModuleTest.php +++ b/tests/app/Module/IndividualFactsTabModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class IndividualFactsTabModule */ -class IndividualFactsTabModuleTest extends \PHPUnit\Framework\TestCase +class IndividualFactsTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php index ef202a461c..a8b77c20d5 100644 --- a/tests/app/Module/IndividualFamiliesReportModuleTest.php +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class IndividualFamiliesReportModule */ -class IndividualFamiliesReportModuleTest extends \PHPUnit\Framework\TestCase +class IndividualFamiliesReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php index 67ae9051b2..dc2a07f827 100644 --- a/tests/app/Module/IndividualReportModuleTest.php +++ b/tests/app/Module/IndividualReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class IndividualReportModule */ -class IndividualReportModuleTest extends \PHPUnit\Framework\TestCase +class IndividualReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/InteractiveTree/TreeViewTest.php b/tests/app/Module/InteractiveTree/TreeViewTest.php index 4515e4b6f5..3a754e0d90 100644 --- a/tests/app/Module/InteractiveTree/TreeViewTest.php +++ b/tests/app/Module/InteractiveTree/TreeViewTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\InteractiveTree; /** * Test harness for the class TreeView */ -class TreeViewTest extends \PHPUnit\Framework\TestCase +class TreeViewTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/InteractiveTreeModuleTest.php b/tests/app/Module/InteractiveTreeModuleTest.php index d5e3d80a08..d3f3b8a52e 100644 --- a/tests/app/Module/InteractiveTreeModuleTest.php +++ b/tests/app/Module/InteractiveTreeModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class InteractiveTreeModule */ -class InteractiveTreeModuleTest extends \PHPUnit\Framework\TestCase +class InteractiveTreeModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/LifespansChartModuleTest.php b/tests/app/Module/LifespansChartModuleTest.php index f0c9e4d517..4b3f848e3e 100644 --- a/tests/app/Module/LifespansChartModuleTest.php +++ b/tests/app/Module/LifespansChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class LifespansChartModule */ -class LifespansChartModuleTest extends \PHPUnit\Framework\TestCase +class LifespansChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/LoggedInUsersModuleTest.php b/tests/app/Module/LoggedInUsersModuleTest.php index 40642dfc7f..ec21b4f9a0 100644 --- a/tests/app/Module/LoggedInUsersModuleTest.php +++ b/tests/app/Module/LoggedInUsersModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class LoggedInUsersModule */ -class LoggedInUsersModuleTest extends \PHPUnit\Framework\TestCase +class LoggedInUsersModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/LoginBlockModuleTest.php b/tests/app/Module/LoginBlockModuleTest.php index 3808fa18f8..88dda82605 100644 --- a/tests/app/Module/LoginBlockModuleTest.php +++ b/tests/app/Module/LoginBlockModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class LoginBlockModule */ -class LoginBlockModuleTest extends \PHPUnit\Framework\TestCase +class LoginBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php index 90fb151904..4a98b10545 100644 --- a/tests/app/Module/MarriageReportModuleTest.php +++ b/tests/app/Module/MarriageReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class MarriageReportModule */ -class MarriageReportModuleTest extends \PHPUnit\Framework\TestCase +class MarriageReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/MediaTabModuleTest.php b/tests/app/Module/MediaTabModuleTest.php index eb2a41d940..3f50a10684 100644 --- a/tests/app/Module/MediaTabModuleTest.php +++ b/tests/app/Module/MediaTabModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class MediaTabModule */ -class MediaTabModuleTest extends \PHPUnit\Framework\TestCase +class MediaTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php index b670a51212..6211bd9cf5 100644 --- a/tests/app/Module/MissingFactsReportModuleTest.php +++ b/tests/app/Module/MissingFactsReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class MissingFactsReportModule */ -class MissingFactsReportModuleTest extends \PHPUnit\Framework\TestCase +class MissingFactsReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleBlockInterfaceTest.php b/tests/app/Module/ModuleBlockInterfaceTest.php index 1923854bf9..21919ca6d1 100644 --- a/tests/app/Module/ModuleBlockInterfaceTest.php +++ b/tests/app/Module/ModuleBlockInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleBlockInterface */ -class ModuleBlockInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleBlockInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleChartInterfaceTest.php b/tests/app/Module/ModuleChartInterfaceTest.php index 92240ba3d7..2595bfb488 100644 --- a/tests/app/Module/ModuleChartInterfaceTest.php +++ b/tests/app/Module/ModuleChartInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleChartInterface */ -class ModuleChartInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleChartInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleConfigInterfaceTest.php b/tests/app/Module/ModuleConfigInterfaceTest.php index 290029fb66..aa85fc8a0e 100644 --- a/tests/app/Module/ModuleConfigInterfaceTest.php +++ b/tests/app/Module/ModuleConfigInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleConfigInterface */ -class ModuleConfigInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleConfigInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleMenuInterfaceTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php index 5102ef3d37..c7757009e4 100644 --- a/tests/app/Module/ModuleMenuInterfaceTest.php +++ b/tests/app/Module/ModuleMenuInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleMenuInterface */ -class ModuleMenuInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleMenuInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleReportInterfaceTest.php b/tests/app/Module/ModuleReportInterfaceTest.php index a771714156..0445ca6dc0 100644 --- a/tests/app/Module/ModuleReportInterfaceTest.php +++ b/tests/app/Module/ModuleReportInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleReportInterface */ -class ModuleReportInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleReportInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleSidebarInterfaceTest.php b/tests/app/Module/ModuleSidebarInterfaceTest.php index a175df2a71..a9d213f514 100644 --- a/tests/app/Module/ModuleSidebarInterfaceTest.php +++ b/tests/app/Module/ModuleSidebarInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleSidebarInterface */ -class ModuleSidebarInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleSidebarInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleTabInterfaceTest.php b/tests/app/Module/ModuleTabInterfaceTest.php index 2a6a2ca6cb..befd4b4f0d 100644 --- a/tests/app/Module/ModuleTabInterfaceTest.php +++ b/tests/app/Module/ModuleTabInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleTabInterface */ -class ModuleTabInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleTabInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ModuleThemeInterfaceTest.php b/tests/app/Module/ModuleThemeInterfaceTest.php index 80752af6c6..198be673cc 100644 --- a/tests/app/Module/ModuleThemeInterfaceTest.php +++ b/tests/app/Module/ModuleThemeInterfaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ModuleThemeInterface */ -class ModuleThemeInterfaceTest extends \PHPUnit\Framework\TestCase +class ModuleThemeInterfaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/NotesTabModuleTest.php b/tests/app/Module/NotesTabModuleTest.php index 842bb00ed5..a0d6e205d9 100644 --- a/tests/app/Module/NotesTabModuleTest.php +++ b/tests/app/Module/NotesTabModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class NotesTabModule */ -class NotesTabModuleTest extends \PHPUnit\Framework\TestCase +class NotesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php index e7b657ea5b..b4932a1d5f 100644 --- a/tests/app/Module/OccupationReportModuleTest.php +++ b/tests/app/Module/OccupationReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class OccupationReportModule */ -class OccupationReportModuleTest extends \PHPUnit\Framework\TestCase +class OccupationReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/OnThisDayModuleTest.php b/tests/app/Module/OnThisDayModuleTest.php index 783cae7a47..22ae1725fa 100644 --- a/tests/app/Module/OnThisDayModuleTest.php +++ b/tests/app/Module/OnThisDayModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class OnThisDayModule */ -class OnThisDayModuleTest extends \PHPUnit\Framework\TestCase +class OnThisDayModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/PedigreeChartModuleTest.php b/tests/app/Module/PedigreeChartModuleTest.php index d7ca08984d..a7d71d67ff 100644 --- a/tests/app/Module/PedigreeChartModuleTest.php +++ b/tests/app/Module/PedigreeChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class PedigreeChartModule */ -class PedigreeChartModuleTest extends \PHPUnit\Framework\TestCase +class PedigreeChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php index de16f4f3f6..14a1ddc46c 100644 --- a/tests/app/Module/PedigreeReportModuleTest.php +++ b/tests/app/Module/PedigreeReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class PedigreeReportModule */ -class PedigreeReportModuleTest extends \PHPUnit\Framework\TestCase +class PedigreeReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/RecentChangesModuleTest.php b/tests/app/Module/RecentChangesModuleTest.php index 58b7249eed..811c2e91d6 100644 --- a/tests/app/Module/RecentChangesModuleTest.php +++ b/tests/app/Module/RecentChangesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class RecentChangesModule */ -class RecentChangesModuleTest extends \PHPUnit\Framework\TestCase +class RecentChangesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php index c5297c10ff..65cb1c909f 100644 --- a/tests/app/Module/RelatedIndividualsReportModuleTest.php +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class RelatedIndividualsReportModule */ -class RelatedIndividualsReportModuleTest extends \PHPUnit\Framework\TestCase +class RelatedIndividualsReportModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/RelationshipsChartModuleTest.php b/tests/app/Module/RelationshipsChartModuleTest.php index db06fc382f..28b7ac6083 100644 --- a/tests/app/Module/RelationshipsChartModuleTest.php +++ b/tests/app/Module/RelationshipsChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class RelationshipsChartModule */ -class RelationshipsChartModuleTest extends \PHPUnit\Framework\TestCase +class RelationshipsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/RelativesTabModuleTest.php b/tests/app/Module/RelativesTabModuleTest.php index 59f08db31b..c219ab1db3 100644 --- a/tests/app/Module/RelativesTabModuleTest.php +++ b/tests/app/Module/RelativesTabModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class RelativesTabModule */ -class RelativesTabModuleTest extends \PHPUnit\Framework\TestCase +class RelativesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ResearchTaskModuleTest.php b/tests/app/Module/ResearchTaskModuleTest.php index 1432890e89..c25c1279cd 100644 --- a/tests/app/Module/ResearchTaskModuleTest.php +++ b/tests/app/Module/ResearchTaskModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ResearchTaskModule */ -class ResearchTaskModuleTest extends \PHPUnit\Framework\TestCase +class ResearchTaskModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ReviewChangesModuleTest.php b/tests/app/Module/ReviewChangesModuleTest.php index 8dcac9f81d..4f966dbaae 100644 --- a/tests/app/Module/ReviewChangesModuleTest.php +++ b/tests/app/Module/ReviewChangesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ReviewChangesModule */ -class ReviewChangesModuleTest extends \PHPUnit\Framework\TestCase +class ReviewChangesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/SiteMapModuleTest.php b/tests/app/Module/SiteMapModuleTest.php index 76b2b1f443..0ad74d09fb 100644 --- a/tests/app/Module/SiteMapModuleTest.php +++ b/tests/app/Module/SiteMapModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class SiteMapModule */ -class SiteMapModuleTest extends \PHPUnit\Framework\TestCase +class SiteMapModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/SlideShowModuleTest.php b/tests/app/Module/SlideShowModuleTest.php index 4ef8481a98..9871510d06 100644 --- a/tests/app/Module/SlideShowModuleTest.php +++ b/tests/app/Module/SlideShowModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class SlideShowModule */ -class SlideShowModuleTest extends \PHPUnit\Framework\TestCase +class SlideShowModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/SourcesTabModuleTest.php b/tests/app/Module/SourcesTabModuleTest.php index 4e585581a0..6751f4d48a 100644 --- a/tests/app/Module/SourcesTabModuleTest.php +++ b/tests/app/Module/SourcesTabModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class SourcesTabModule */ -class SourcesTabModuleTest extends \PHPUnit\Framework\TestCase +class SourcesTabModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/StatisticsChartModuleTest.php b/tests/app/Module/StatisticsChartModuleTest.php index 65dd84c0ca..fde4d75d60 100644 --- a/tests/app/Module/StatisticsChartModuleTest.php +++ b/tests/app/Module/StatisticsChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class StatisticsChartModule */ -class StatisticsChartModuleTest extends \PHPUnit\Framework\TestCase +class StatisticsChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/StoriesModuleTest.php b/tests/app/Module/StoriesModuleTest.php index c5b59c7572..df3d9b0990 100644 --- a/tests/app/Module/StoriesModuleTest.php +++ b/tests/app/Module/StoriesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class StoriesModule */ -class StoriesModuleTest extends \PHPUnit\Framework\TestCase +class StoriesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/ThemeSelectModuleTest.php b/tests/app/Module/ThemeSelectModuleTest.php index e2614015b6..a1b2c4606d 100644 --- a/tests/app/Module/ThemeSelectModuleTest.php +++ b/tests/app/Module/ThemeSelectModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class ThemeSelectModule */ -class ThemeSelectModuleTest extends \PHPUnit\Framework\TestCase +class ThemeSelectModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/TimelineChartModuleTest.php b/tests/app/Module/TimelineChartModuleTest.php index 4a6a8cf1d0..0198178fd6 100644 --- a/tests/app/Module/TimelineChartModuleTest.php +++ b/tests/app/Module/TimelineChartModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class TimelineChartModule */ -class TimelineChartModuleTest extends \PHPUnit\Framework\TestCase +class TimelineChartModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/TopGivenNamesModuleTest.php b/tests/app/Module/TopGivenNamesModuleTest.php index 6c8c25764d..822334e034 100644 --- a/tests/app/Module/TopGivenNamesModuleTest.php +++ b/tests/app/Module/TopGivenNamesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class TopGivenNamesModule */ -class TopGivenNamesModuleTest extends \PHPUnit\Framework\TestCase +class TopGivenNamesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/TopPageViewsModuleTest.php b/tests/app/Module/TopPageViewsModuleTest.php index 1ba5bc93e3..cad796e2a3 100644 --- a/tests/app/Module/TopPageViewsModuleTest.php +++ b/tests/app/Module/TopPageViewsModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class TopPageViewsModule */ -class TopPageViewsModuleTest extends \PHPUnit\Framework\TestCase +class TopPageViewsModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/TopSurnamesModuleTest.php b/tests/app/Module/TopSurnamesModuleTest.php index ba5dbff930..40a92dc5f2 100644 --- a/tests/app/Module/TopSurnamesModuleTest.php +++ b/tests/app/Module/TopSurnamesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class TopSurnamesModule */ -class TopSurnamesModuleTest extends \PHPUnit\Framework\TestCase +class TopSurnamesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/UpcomingAnniversariesModuleTest.php b/tests/app/Module/UpcomingAnniversariesModuleTest.php index 2b74936f6c..797101f105 100644 --- a/tests/app/Module/UpcomingAnniversariesModuleTest.php +++ b/tests/app/Module/UpcomingAnniversariesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class UpcomingAnniversariesModule */ -class UpcomingAnniversariesModuleTest extends \PHPUnit\Framework\TestCase +class UpcomingAnniversariesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/UserFavoritesModuleTest.php b/tests/app/Module/UserFavoritesModuleTest.php index 04966e515a..4f47e424e5 100644 --- a/tests/app/Module/UserFavoritesModuleTest.php +++ b/tests/app/Module/UserFavoritesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class UserFavoritesModule */ -class UserFavoritesModuleTest extends \PHPUnit\Framework\TestCase +class UserFavoritesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/UserJournalModuleTest.php b/tests/app/Module/UserJournalModuleTest.php index 491325a5fa..e9a551f746 100644 --- a/tests/app/Module/UserJournalModuleTest.php +++ b/tests/app/Module/UserJournalModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class UserJournalModule */ -class UserJournalModuleTest extends \PHPUnit\Framework\TestCase +class UserJournalModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/UserMessagesModuleTest.php b/tests/app/Module/UserMessagesModuleTest.php index 9e4d052b56..20008bcfda 100644 --- a/tests/app/Module/UserMessagesModuleTest.php +++ b/tests/app/Module/UserMessagesModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class UserMessagesModule */ -class UserMessagesModuleTest extends \PHPUnit\Framework\TestCase +class UserMessagesModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/UserWelcomeModuleTest.php b/tests/app/Module/UserWelcomeModuleTest.php index 131c692049..e867368d4c 100644 --- a/tests/app/Module/UserWelcomeModuleTest.php +++ b/tests/app/Module/UserWelcomeModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class UserWelcomeModule */ -class UserWelcomeModuleTest extends \PHPUnit\Framework\TestCase +class UserWelcomeModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/WelcomeBlockModuleTest.php b/tests/app/Module/WelcomeBlockModuleTest.php index 651165f7e1..58971594a9 100644 --- a/tests/app/Module/WelcomeBlockModuleTest.php +++ b/tests/app/Module/WelcomeBlockModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class WelcomeBlockModule */ -class WelcomeBlockModuleTest extends \PHPUnit\Framework\TestCase +class WelcomeBlockModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Module/YahrzeitModuleTest.php b/tests/app/Module/YahrzeitModuleTest.php index e1411e033c..1509b7cdfb 100644 --- a/tests/app/Module/YahrzeitModuleTest.php +++ b/tests/app/Module/YahrzeitModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module; /** * Test harness for the class YahrzeitModule */ -class YahrzeitModuleTest extends \PHPUnit\Framework\TestCase +class YahrzeitModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/ModuleTest.php b/tests/app/ModuleTest.php index 0270552b95..381cab3fbf 100644 --- a/tests/app/ModuleTest.php +++ b/tests/app/ModuleTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Module */ -class ModuleTest extends \PHPUnit\Framework\TestCase +class ModuleTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/NoteTest.php b/tests/app/NoteTest.php index fa77b3ef5e..2cb67f79e8 100644 --- a/tests/app/NoteTest.php +++ b/tests/app/NoteTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Note */ -class NoteTest extends \PHPUnit\Framework\TestCase +class NoteTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/PlaceTest.php b/tests/app/PlaceTest.php index 430e8abb19..e201a7d4e0 100644 --- a/tests/app/PlaceTest.php +++ b/tests/app/PlaceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -18,7 +17,7 @@ /** * Test harness for the class Place */ -class PlaceTest extends \PHPUnit\Framework\TestCase +class PlaceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Report/ReportBaseTest.php b/tests/app/Report/ReportBaseTest.php index a2a8169bab..93b242421f 100644 --- a/tests/app/Report/ReportBaseTest.php +++ b/tests/app/Report/ReportBaseTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Report; /** * Test harness for the class ReportBase */ -class ReportBaseTest extends \PHPUnit\Framework\TestCase +class ReportBaseTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Report/ReportHTMLTest.php b/tests/app/Report/ReportHTMLTest.php index 11f09bf4e4..9f4be04838 100644 --- a/tests/app/Report/ReportHTMLTest.php +++ b/tests/app/Report/ReportHTMLTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Report; /** * Test harness for the class ReportHtml */ -class ReportHTMLTest extends \PHPUnit\Framework\TestCase +class ReportHTMLTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Report/ReportPDFTest.php b/tests/app/Report/ReportPDFTest.php index 98e5ef2a0a..4b7ee4812d 100644 --- a/tests/app/Report/ReportPDFTest.php +++ b/tests/app/Report/ReportPDFTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Report; /** * Test harness for the class ReportPdf */ -class ReportPDFTest extends \PHPUnit\Framework\TestCase +class ReportPDFTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/RepositoryTest.php b/tests/app/RepositoryTest.php index b7a9e6064d..122fb94d55 100644 --- a/tests/app/RepositoryTest.php +++ b/tests/app/RepositoryTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Repository */ -class RepositoryTest extends \PHPUnit\Framework\TestCase +class RepositoryTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/Services/TimoutServiceTest.php b/tests/app/Services/TimoutServiceTest.php new file mode 100644 index 0000000000..431956a14e --- /dev/null +++ b/tests/app/Services/TimoutServiceTest.php @@ -0,0 +1,158 @@ +<?php +/** + * webtrees: online genealogy + * Copyright (C) 2018 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/>. + */ +namespace Fisharebest\Webtrees\Services; + +use Mockery; + +/** + * Mock function. + * + * @param mixed ...$args + * + * @return mixed + */ +function ini_get(...$args) { + return TimeoutServiceTest::$mock_functions->ini_get(...$args); +} + +/** + * Mock function. + * + * @param mixed ...$args + * + * @return mixed + */ +function microtime(...$args) { + return TimeoutServiceTest::$mock_functions->microtime(...$args); +} + +/** + * Test harness for the class TimeoutServiceTest + */ +class TimeoutServiceTest extends \Fisharebest\Webtrees\TestCase +{ + /** @var object */ + public static $mock_functions; + + /** + * Initialize the test script + */ + public function setUp() { + self::$mock_functions = Mockery::mock(); + } + + /** + * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + */ + public function testNoTimeOut() + { + $now = \microtime(true); + + $timeout_service = new TimeoutService($now); + + self::$mock_functions + ->shouldReceive('ini_get') + ->with('max_execution_time') + ->once() + ->andReturn('0'); + + $this->assertFalse($timeout_service->isTimeNearlyUp()); + } + + /** + * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + */ + public function testTimeOutReached() + { + $now = \microtime(true); + + $timeout_service = new TimeoutService($now); + + self::$mock_functions + ->shouldReceive('ini_get') + ->with('max_execution_time') + ->once() + ->andReturn('30'); + + self::$mock_functions + ->shouldReceive('microtime') + ->with('true') + ->once() + ->andReturn($now + 60.0); + + $this->assertTrue($timeout_service->isTimeNearlyUp()); + } + + /** + * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeNearlyUp() + */ + public function testTimeOutNotReached() + { + $now = \microtime(true); + + $timeout_service = new TimeoutService($now); + + self::$mock_functions + ->shouldReceive('ini_get') + ->with('max_execution_time') + ->once() + ->andReturn('30'); + + self::$mock_functions + ->shouldReceive('microtime') + ->with('true') + ->once() + ->andReturn($now + 10.0); + + $this->assertFalse($timeout_service->isTimeNearlyUp()); + } + + /** + * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeLimitUp() + */ + public function testTimeLimitNotReached() + { + $now = \microtime(true); + + $timeout_service = new TimeoutService($now); + + self::$mock_functions + ->shouldReceive('microtime') + ->with('true') + ->once() + ->andReturn($now + 1.4); + + $this->assertFalse($timeout_service->isTimeLimitUp()); + } + + /** + * @covers \Fisharebest\Webtrees\Services\TimeoutService::isTimeLimitUp() + */ + public function testTimeLimitReached() + { + $now = \microtime(true); + + $timeout_service = new TimeoutService($now); + + self::$mock_functions + ->shouldReceive('microtime') + ->with('true') + ->once() + ->andReturn($now + 1.6); + + $this->assertTrue($timeout_service->isTimeLimitUp()); + } +} diff --git a/tests/app/SiteTest.php b/tests/app/SiteTest.php index 72d73fcbfc..08c1e0ac97 100644 --- a/tests/app/SiteTest.php +++ b/tests/app/SiteTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -18,7 +17,7 @@ /** * Test harness for the class Site */ -class SiteTest extends \PHPUnit\Framework\TestCase +class SiteTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/SoundexTest.php b/tests/app/SoundexTest.php index 5ed5d75d50..fe9a917c88 100644 --- a/tests/app/SoundexTest.php +++ b/tests/app/SoundexTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,13 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; +namespace Fisharebest\Webtrees; /** * Test harness for the class Soundex */ -class SoundexTest extends \PHPUnit\Framework\TestCase +class SoundexTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/SourceTest.php b/tests/app/SourceTest.php index ce89470d78..20d0602e1f 100644 --- a/tests/app/SourceTest.php +++ b/tests/app/SourceTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -18,7 +17,7 @@ /** * Test harness for the class Source */ -class SourceTest extends \PHPUnit\Framework\TestCase +class SourceTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/StatementTest.php b/tests/app/StatementTest.php index 40ae90974c..d78c112caa 100644 --- a/tests/app/StatementTest.php +++ b/tests/app/StatementTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Statement */ -class StatementTest extends \PHPUnit\Framework\TestCase +class StatementTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/StatsTest.php b/tests/app/StatsTest.php index 91ed98d884..3d0a3a5709 100644 --- a/tests/app/StatsTest.php +++ b/tests/app/StatsTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Stats */ -class StatsTest extends \PHPUnit\Framework\TestCase +class StatsTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php index 38c35af989..b6ef66f917 100644 --- a/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class DefaultSurnameTradition */ -class DefaultSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class DefaultSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php index 2055621883..5182bb8d8a 100644 --- a/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ -class IcelandicSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class IcelandicSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php index 003198dbba..f179894a2c 100644 --- a/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\LithuanianSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ -class LithuanianSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class LithuanianSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php index b539dc8ec7..6510ff56ee 100644 --- a/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\MatrilinealSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class PatrilinenalSurnameTradition */ -class MatrilinealSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class MatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php index ce3dcab35c..8896d6076d 100644 --- a/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\PaternalSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class PaternalSurnameTradition */ -class PaternalSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class PaternalSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php index b5a19f3324..7ba90ada9b 100644 --- a/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\PatrilinealSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class PatrilinenalSurnameTradition */ -class PatrilinealSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class PatrilinealSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/PolishSurnameTraditionTest.php b/tests/app/SurnameTradition/PolishSurnameTraditionTest.php index 45828a36a2..ea304876ed 100644 --- a/tests/app/SurnameTradition/PolishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PolishSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\PolishSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ -class PolishSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class PolishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php index 9f40690c1c..978e8ba0fd 100644 --- a/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ -class PortugueseSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class PortugueseSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php index 7c2fc2627e..03dbbeee29 100644 --- a/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; @@ -21,7 +21,7 @@ use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ -class SpanishSurnameTraditionTest extends \PHPUnit\Framework\TestCase +class SpanishSurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; diff --git a/tests/app/SurnameTraditionTest.php b/tests/app/SurnameTraditionTest.php index 28eb196ee7..dfa1115515 100644 --- a/tests/app/SurnameTraditionTest.php +++ b/tests/app/SurnameTraditionTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,6 +13,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; use Fisharebest\Webtrees\SurnameTradition; use Fisharebest\Webtrees\SurnameTradition\DefaultSurnameTradition; @@ -29,7 +29,7 @@ use Fisharebest\Webtrees\SurnameTradition\SpanishSurnameTradition; /** * Test harness for the class Soundex */ -class SurnameTraditionTest extends \PHPUnit\Framework\TestCase +class SurnameTraditionTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/TreeTest.php b/tests/app/TreeTest.php index 7fe977fa0e..376db014b2 100644 --- a/tests/app/TreeTest.php +++ b/tests/app/TreeTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class Tree */ -class TreeTest extends \PHPUnit\Framework\TestCase +class TreeTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests diff --git a/tests/app/UserTest.php b/tests/app/UserTest.php index 659525b6b5..4afade9fb3 100644 --- a/tests/app/UserTest.php +++ b/tests/app/UserTest.php @@ -1,5 +1,4 @@ <?php - /** * webtrees: online genealogy * Copyright (C) 2018 webtrees development team @@ -14,11 +13,12 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees; /** * Test harness for the class WT_User */ -class UserTest extends \PHPUnit\Framework\TestCase +class UserTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests |
