diff options
Diffstat (limited to 'tests/app/Census')
135 files changed, 176 insertions, 176 deletions
diff --git a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php index 47f01d40ef..8f7611d004 100644 --- a/tests/app/Census/CensusColumnAgeFemale5YearsTest.php +++ b/tests/app/Census/CensusColumnAgeFemale5YearsTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnAgeMaleTest.php b/tests/app/Census/CensusColumnAgeMaleTest.php index 3da2a2f825..c0ca3657d1 100644 --- a/tests/app/Census/CensusColumnAgeMaleTest.php +++ b/tests/app/Census/CensusColumnAgeMaleTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnAgeMarriedTest.php b/tests/app/Census/CensusColumnAgeMarriedTest.php index a49a8d065c..2acfc2802d 100644 --- a/tests/app/Census/CensusColumnAgeMarriedTest.php +++ b/tests/app/Census/CensusColumnAgeMarriedTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnAgeTest.php b/tests/app/Census/CensusColumnAgeTest.php index a57a011dc2..522ed8fe84 100644 --- a/tests/app/Census/CensusColumnAgeTest.php +++ b/tests/app/Census/CensusColumnAgeTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthDateTest.php b/tests/app/Census/CensusColumnBirthDateTest.php index d42aecc048..08e4ec9f0a 100644 --- a/tests/app/Census/CensusColumnBirthDateTest.php +++ b/tests/app/Census/CensusColumnBirthDateTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php index 1213635b6a..1b5c0f40db 100644 --- a/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayDotMonthYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -28,7 +28,7 @@ class CensusColumnBirthDayDotMonthYearTest extends \PHPUnit_Framework_TestCase { public function tearDown() { Mockery::close(); } - + /** * @covers Fisharebest\Webtrees\Census\CensusColumnBirthDayDotMonthYearTest * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn @@ -36,20 +36,20 @@ class CensusColumnBirthDayDotMonthYearTest extends \PHPUnit_Framework_TestCase { public function testGenerateColumn() { $cal_date = Mockery::mock('Fisharebest\Webtrees\Date\CalendarDate'); $cal_date->shouldReceive('format')->andReturn('30. June 1832'); - + $date = Mockery::mock('Fisharebest\Webtrees\Date'); $date->shouldReceive('minimumJulianDay')->andReturn($cal_date); $date->shouldReceive('maximumJulianDay')->andReturn($cal_date); $date->shouldReceive('minimumDate')->andReturn($cal_date); - + $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); $individual->shouldReceive('getBirthDate')->andReturn($date); - + $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); $census->shouldReceive('censusDate')->andReturn('30 JUN 1832'); - + $column = new CensusColumnBirthDayDotMonthYear($census, '', ''); - + $this->assertSame('30. June 1832', $column->generate($individual)); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php index 9694576864..c58bb7ca24 100644 --- a/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php +++ b/tests/app/Census/CensusColumnBirthDayMonthSlashYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php index 38f7d5b7dd..fbad90ca9b 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php index 55a87b8327..b97c1c6d5f 100644 --- a/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php +++ b/tests/app/Census/CensusColumnBirthDaySlashMonthYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthDayTest.php b/tests/app/Census/CensusColumnBirthDayTest.php index affb859312..765f17bd2a 100644 --- a/tests/app/Census/CensusColumnBirthDayTest.php +++ b/tests/app/Census/CensusColumnBirthDayTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -28,7 +28,7 @@ class CensusColumnBirthDayTest extends \PHPUnit_Framework_TestCase { public function tearDown() { Mockery::close(); } - + /** * @covers Fisharebest\Webtrees\Census\CensusColumnBirthDay * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn @@ -36,18 +36,18 @@ class CensusColumnBirthDayTest extends \PHPUnit_Framework_TestCase { public function testGenerateColumn() { $cal_date = Mockery::mock('Fisharebest\Webtrees\Date\CalendarDate'); $cal_date->shouldReceive('format')->andReturn('30'); - + $date = Mockery::mock('Fisharebest\Webtrees\Date'); $date->shouldReceive('minimumDate')->andReturn($cal_date); - + $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); $individual->shouldReceive('getEstimatedBirthDate')->andReturn($date); - + $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); $census->shouldReceive('censusDate')->andReturn('30 JUN 1832'); - + $column = new CensusColumnBirthDay($census, '', ''); - + $this->assertSame('30', $column->generate($individual)); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusColumnBirthMonthTest.php b/tests/app/Census/CensusColumnBirthMonthTest.php index ed0605d3d6..f01a4bfac4 100644 --- a/tests/app/Census/CensusColumnBirthMonthTest.php +++ b/tests/app/Census/CensusColumnBirthMonthTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php index 0545a8d42a..4dec233d48 100644 --- a/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceSimpleTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthPlaceTest.php b/tests/app/Census/CensusColumnBirthPlaceTest.php index 1e48954bca..40dd5ef9a6 100644 --- a/tests/app/Census/CensusColumnBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnBirthPlaceTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBirthYearTest.php b/tests/app/Census/CensusColumnBirthYearTest.php index d27027c233..4d80e049cc 100644 --- a/tests/app/Census/CensusColumnBirthYearTest.php +++ b/tests/app/Census/CensusColumnBirthYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnBornForeignPartsTest.php b/tests/app/Census/CensusColumnBornForeignPartsTest.php index 996af30203..9487d4bd9d 100644 --- a/tests/app/Census/CensusColumnBornForeignPartsTest.php +++ b/tests/app/Census/CensusColumnBornForeignPartsTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnChildrenBornAliveTest.php b/tests/app/Census/CensusColumnChildrenBornAliveTest.php index 7d61d3b6b8..bd8e003748 100644 --- a/tests/app/Census/CensusColumnChildrenBornAliveTest.php +++ b/tests/app/Census/CensusColumnChildrenBornAliveTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnChildrenDiedTest.php b/tests/app/Census/CensusColumnChildrenDiedTest.php index e6cebbe339..6c0fcc116a 100644 --- a/tests/app/Census/CensusColumnChildrenDiedTest.php +++ b/tests/app/Census/CensusColumnChildrenDiedTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnChildrenLivingTest.php b/tests/app/Census/CensusColumnChildrenLivingTest.php index bce64e4c62..df10ca79e1 100644 --- a/tests/app/Census/CensusColumnChildrenLivingTest.php +++ b/tests/app/Census/CensusColumnChildrenLivingTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionDanishTest.php b/tests/app/Census/CensusColumnConditionDanishTest.php index 0dc73e2900..572fb08777 100644 --- a/tests/app/Census/CensusColumnConditionDanishTest.php +++ b/tests/app/Census/CensusColumnConditionDanishTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionEnglishTest.php b/tests/app/Census/CensusColumnConditionEnglishTest.php index 46fc8fa741..a54c8a702f 100644 --- a/tests/app/Census/CensusColumnConditionEnglishTest.php +++ b/tests/app/Census/CensusColumnConditionEnglishTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php index 9cc816004a..d12c63b27a 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFemmeTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php index 8979be71af..45487b5387 100644 --- a/tests/app/Census/CensusColumnConditionFrenchFilleTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchFilleTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php index 0f9126165e..e85377b4f7 100644 --- a/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php +++ b/tests/app/Census/CensusColumnConditionFrenchVeuveTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnConditionUsTest.php b/tests/app/Census/CensusColumnConditionUsTest.php index cdf60f4e3f..4adc7507a5 100644 --- a/tests/app/Census/CensusColumnConditionUsTest.php +++ b/tests/app/Census/CensusColumnConditionUsTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php index 1c04a293af..9d85c8d154 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceSimpleTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php index 33ef77ab94..54e59a7067 100644 --- a/tests/app/Census/CensusColumnFatherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnFatherBirthPlaceTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnFatherForeignTest.php b/tests/app/Census/CensusColumnFatherForeignTest.php index 9d7ffe177b..de92d91174 100644 --- a/tests/app/Census/CensusColumnFatherForeignTest.php +++ b/tests/app/Census/CensusColumnFatherForeignTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnFullNameTest.php b/tests/app/Census/CensusColumnFullNameTest.php index a18d07c6d8..807fc0f7d9 100644 --- a/tests/app/Census/CensusColumnFullNameTest.php +++ b/tests/app/Census/CensusColumnFullNameTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnGivenNameInitialTest.php b/tests/app/Census/CensusColumnGivenNameInitialTest.php index 80b957bc76..289ed7d6bb 100644 --- a/tests/app/Census/CensusColumnGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnGivenNameInitialTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnGivenNamesTest.php b/tests/app/Census/CensusColumnGivenNamesTest.php index 5597f00797..87e39fc006 100644 --- a/tests/app/Census/CensusColumnGivenNamesTest.php +++ b/tests/app/Census/CensusColumnGivenNamesTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMarriedWithinYearTest.php index 24e92c79db..be29ea52c2 100644 --- a/tests/app/Census/CensusColumnMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMarriedWithinYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php index b7d2ecb259..59281a5343 100644 --- a/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfBornWithinYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php index 1b703842ff..5da6db12f1 100644 --- a/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php +++ b/tests/app/Census/CensusColumnMonthIfMarriedWithinYearTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php index 0a8fe415a6..23d083751c 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceSimpleTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php index d5eec5f66e..710b53652e 100644 --- a/tests/app/Census/CensusColumnMotherBirthPlaceTest.php +++ b/tests/app/Census/CensusColumnMotherBirthPlaceTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php index 5b2d8be249..886b5e5de9 100644 --- a/tests/app/Census/CensusColumnMotherForeignTest.php +++ b/tests/app/Census/CensusColumnMotherForeignTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnNationalityTest.php b/tests/app/Census/CensusColumnNationalityTest.php index abdf69b562..b6417da65e 100644 --- a/tests/app/Census/CensusColumnNationalityTest.php +++ b/tests/app/Census/CensusColumnNationalityTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnNullTest.php b/tests/app/Census/CensusColumnNullTest.php index 49886cd60b..0fb05d1424 100644 --- a/tests/app/Census/CensusColumnNullTest.php +++ b/tests/app/Census/CensusColumnNullTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnOccupationTest.php b/tests/app/Census/CensusColumnOccupationTest.php index 7ab340078f..a2e289a701 100644 --- a/tests/app/Census/CensusColumnOccupationTest.php +++ b/tests/app/Census/CensusColumnOccupationTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php index 85189f03c9..97b00f8c6d 100644 --- a/tests/app/Census/CensusColumnRelationToHeadGermanTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadGermanTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -28,18 +28,18 @@ class CensusColumnRelationToHeadGermanTest extends \PHPUnit_Framework_TestCase { public function tearDown() { Mockery::close(); } - + /** * @covers Fisharebest\Webtrees\Census\CensusColumnRelationToHead * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn */ public function testNull() { $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); - + $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); - + $column = new CensusColumnRelationToHeadGerman($census, '', ''); - + $this->assertSame('', $column->generate($individual)); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusColumnRelationToHeadTest.php b/tests/app/Census/CensusColumnRelationToHeadTest.php index bac30b4015..165938917b 100644 --- a/tests/app/Census/CensusColumnRelationToHeadTest.php +++ b/tests/app/Census/CensusColumnRelationToHeadTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnReligionTest.php b/tests/app/Census/CensusColumnReligionTest.php index eee79441fd..c53e8cf441 100644 --- a/tests/app/Census/CensusColumnReligionTest.php +++ b/tests/app/Census/CensusColumnReligionTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSexMFTest.php b/tests/app/Census/CensusColumnSexMFTest.php index 4ecbcc579d..448c955a1f 100644 --- a/tests/app/Census/CensusColumnSexMFTest.php +++ b/tests/app/Census/CensusColumnSexMFTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSexMKTest.php b/tests/app/Census/CensusColumnSexMKTest.php index 93cdcb39ee..719479cba7 100644 --- a/tests/app/Census/CensusColumnSexMKTest.php +++ b/tests/app/Census/CensusColumnSexMKTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSexMZTest.php b/tests/app/Census/CensusColumnSexMZTest.php index 3f012a392b..4257eda99a 100644 --- a/tests/app/Census/CensusColumnSexMZTest.php +++ b/tests/app/Census/CensusColumnSexMZTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php index 16287878a2..2738013dc9 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNameInitialTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php index 4ed906103e..9770cf2c23 100644 --- a/tests/app/Census/CensusColumnSurnameGivenNamesTest.php +++ b/tests/app/Census/CensusColumnSurnameGivenNamesTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnSurnameTest.php b/tests/app/Census/CensusColumnSurnameTest.php index 6710585367..b75210e9ee 100644 --- a/tests/app/Census/CensusColumnSurnameTest.php +++ b/tests/app/Census/CensusColumnSurnameTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusColumnYearsMarriedTest.php b/tests/app/Census/CensusColumnYearsMarriedTest.php index 32e5c43d8f..8249ff6dbc 100644 --- a/tests/app/Census/CensusColumnYearsMarriedTest.php +++ b/tests/app/Census/CensusColumnYearsMarriedTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfCzechRepublic1880Test.php b/tests/app/Census/CensusOfCzechRepublic1880Test.php index 6748521a27..4664a83acd 100644 --- a/tests/app/Census/CensusOfCzechRepublic1880Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1880Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfCzechRepublic1921Test.php b/tests/app/Census/CensusOfCzechRepublic1921Test.php index d2574076ca..927ea19b2b 100644 --- a/tests/app/Census/CensusOfCzechRepublic1921Test.php +++ b/tests/app/Census/CensusOfCzechRepublic1921Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1801Test.php b/tests/app/Census/CensusOfDenmark1801Test.php index 98b89dc410..30f0cd8e7b 100644 --- a/tests/app/Census/CensusOfDenmark1801Test.php +++ b/tests/app/Census/CensusOfDenmark1801Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1803Test.php b/tests/app/Census/CensusOfDenmark1803Test.php index 2686e2e02d..ba23675b00 100644 --- a/tests/app/Census/CensusOfDenmark1803Test.php +++ b/tests/app/Census/CensusOfDenmark1803Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1834Test.php b/tests/app/Census/CensusOfDenmark1834Test.php index 9485bda852..aa44495629 100644 --- a/tests/app/Census/CensusOfDenmark1834Test.php +++ b/tests/app/Census/CensusOfDenmark1834Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1835Test.php b/tests/app/Census/CensusOfDenmark1835Test.php index 8602cb0b1c..4c13b45da5 100644 --- a/tests/app/Census/CensusOfDenmark1835Test.php +++ b/tests/app/Census/CensusOfDenmark1835Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1845Test.php b/tests/app/Census/CensusOfDenmark1845Test.php index 6245c9e11d..021cfdec09 100644 --- a/tests/app/Census/CensusOfDenmark1845Test.php +++ b/tests/app/Census/CensusOfDenmark1845Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1850Test.php b/tests/app/Census/CensusOfDenmark1850Test.php index 21594dd1a7..43e4c8be8e 100644 --- a/tests/app/Census/CensusOfDenmark1850Test.php +++ b/tests/app/Census/CensusOfDenmark1850Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1860Test.php b/tests/app/Census/CensusOfDenmark1860Test.php index d1b14029d2..ea4d36c9a0 100644 --- a/tests/app/Census/CensusOfDenmark1860Test.php +++ b/tests/app/Census/CensusOfDenmark1860Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1870Test.php b/tests/app/Census/CensusOfDenmark1870Test.php index d9445974f4..1fb821ac73 100644 --- a/tests/app/Census/CensusOfDenmark1870Test.php +++ b/tests/app/Census/CensusOfDenmark1870Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1880Test.php b/tests/app/Census/CensusOfDenmark1880Test.php index f85e877efd..1d599c48fd 100644 --- a/tests/app/Census/CensusOfDenmark1880Test.php +++ b/tests/app/Census/CensusOfDenmark1880Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1890Test.php b/tests/app/Census/CensusOfDenmark1890Test.php index 3a6f9c5546..27e29b1275 100644 --- a/tests/app/Census/CensusOfDenmark1890Test.php +++ b/tests/app/Census/CensusOfDenmark1890Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1901Test.php b/tests/app/Census/CensusOfDenmark1901Test.php index 1101268bb4..33aa3b8dd9 100644 --- a/tests/app/Census/CensusOfDenmark1901Test.php +++ b/tests/app/Census/CensusOfDenmark1901Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1906Test.php b/tests/app/Census/CensusOfDenmark1906Test.php index d734364abf..349be711f7 100644 --- a/tests/app/Census/CensusOfDenmark1906Test.php +++ b/tests/app/Census/CensusOfDenmark1906Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1911Test.php b/tests/app/Census/CensusOfDenmark1911Test.php index 063307ea4e..195d8e29df 100644 --- a/tests/app/Census/CensusOfDenmark1911Test.php +++ b/tests/app/Census/CensusOfDenmark1911Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1916Test.php b/tests/app/Census/CensusOfDenmark1916Test.php index ed601e546d..7a4c03ef03 100644 --- a/tests/app/Census/CensusOfDenmark1916Test.php +++ b/tests/app/Census/CensusOfDenmark1916Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1921Test.php b/tests/app/Census/CensusOfDenmark1921Test.php index 122a85bcf1..9b2466a024 100644 --- a/tests/app/Census/CensusOfDenmark1921Test.php +++ b/tests/app/Census/CensusOfDenmark1921Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1925Test.php b/tests/app/Census/CensusOfDenmark1925Test.php index bd282700d6..9ef9b22e62 100644 --- a/tests/app/Census/CensusOfDenmark1925Test.php +++ b/tests/app/Census/CensusOfDenmark1925Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1930Test.php b/tests/app/Census/CensusOfDenmark1930Test.php index 4d20783657..35d9f11a58 100644 --- a/tests/app/Census/CensusOfDenmark1930Test.php +++ b/tests/app/Census/CensusOfDenmark1930Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmark1940Test.php b/tests/app/Census/CensusOfDenmark1940Test.php index 05bd9e9cab..09516f4e29 100644 --- a/tests/app/Census/CensusOfDenmark1940Test.php +++ b/tests/app/Census/CensusOfDenmark1940Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDenmarkTest.php b/tests/app/Census/CensusOfDenmarkTest.php index 06ebaa216b..f9c224f4b5 100644 --- a/tests/app/Census/CensusOfDenmarkTest.php +++ b/tests/app/Census/CensusOfDenmarkTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfDeutschland1867Test.php b/tests/app/Census/CensusOfDeutschland1867Test.php index b208b11689..29f26ae457 100644 --- a/tests/app/Census/CensusOfDeutschland1867Test.php +++ b/tests/app/Census/CensusOfDeutschland1867Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -27,11 +27,11 @@ class CensusOfDeutschland1867Test extends \PHPUnit_Framework_TestCase { */ public function testPlaceAndDate() { $census = new CensusOfDeutschland1867; - + $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace()); $this->assertSame('03 DEC 1867', $census->censusDate()); } - + /** * Test the census columns * @@ -41,7 +41,7 @@ class CensusOfDeutschland1867Test extends \PHPUnit_Framework_TestCase { public function testColumns() { $census = new CensusOfDeutschland1867; $columns = $census->columns(); - + $this->assertCount(23, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); @@ -115,4 +115,4 @@ class CensusOfDeutschland1867Test extends \PHPUnit_Framework_TestCase { $this->assertSame('IX. Besondere Mängel einzelner Individuen. blödsinnig.', $columns[21]->title()); $this->assertSame('IX. Besondere Mängel einzelner Individuen. irrsinnig.', $columns[22]->title()); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusOfDeutschland1900Test.php b/tests/app/Census/CensusOfDeutschland1900Test.php index 79f1775382..523d00b476 100644 --- a/tests/app/Census/CensusOfDeutschland1900Test.php +++ b/tests/app/Census/CensusOfDeutschland1900Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -27,11 +27,11 @@ class CensusOfDeutschland1900Test extends \PHPUnit_Framework_TestCase { */ public function testPlaceAndDate() { $census = new CensusOfDeutschland1900; - + $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace()); $this->assertSame('01 DEC 1900', $census->censusDate()); } - + /** * Test the census columns * @@ -41,7 +41,7 @@ class CensusOfDeutschland1900Test extends \PHPUnit_Framework_TestCase { public function testColumns() { $census = new CensusOfDeutschland1900; $columns = $census->columns(); - + $this->assertCount(27, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); @@ -98,7 +98,7 @@ class CensusOfDeutschland1900Test extends \PHPUnit_Framework_TestCase { $this->assertSame('ZK 11.Dienstgrad', $columns[24]->abbreviation()); $this->assertSame('ZK 11.Einheit', $columns[25]->abbreviation()); $this->assertSame('ZK 12.Gebrechen', $columns[26]->abbreviation()); - + $this->assertSame('Laufende Nummer', $columns[0]->title()); $this->assertSame('Vorname', $columns[1]->title()); $this->assertSame('Familienname', $columns[2]->title()); diff --git a/tests/app/Census/CensusOfDeutschland1919Test.php b/tests/app/Census/CensusOfDeutschland1919Test.php index b1b56ca0c7..d556ff5687 100644 --- a/tests/app/Census/CensusOfDeutschland1919Test.php +++ b/tests/app/Census/CensusOfDeutschland1919Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -27,11 +27,11 @@ class CensusOfDeutschland1919Test extends \PHPUnit_Framework_TestCase { */ public function testPlaceAndDate() { $census = new CensusOfDeutschland1919; - + $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace()); $this->assertSame('08 OCT 1919', $census->censusDate()); } - + /** * Test the census columns * @@ -41,7 +41,7 @@ class CensusOfDeutschland1919Test extends \PHPUnit_Framework_TestCase { public function testColumns() { $census = new CensusOfDeutschland1919; $columns = $census->columns(); - + $this->assertCount(17, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); @@ -78,7 +78,7 @@ class CensusOfDeutschland1919Test extends \PHPUnit_Framework_TestCase { $this->assertSame('Wohn-/ Aufenthaltsort', $columns[14]->abbreviation()); $this->assertSame('Dienstgrad', $columns[15]->abbreviation()); $this->assertSame('Kriegsgefangener', $columns[16]->abbreviation()); - + $this->assertSame('Laufende Nummer', $columns[0]->title()); $this->assertSame('Vorname', $columns[1]->title()); $this->assertSame('Familienname', $columns[2]->title()); diff --git a/tests/app/Census/CensusOfDeutschlandNL1867Test.php b/tests/app/Census/CensusOfDeutschlandNL1867Test.php index ad54c2e9b5..4687a40b85 100644 --- a/tests/app/Census/CensusOfDeutschlandNL1867Test.php +++ b/tests/app/Census/CensusOfDeutschlandNL1867Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -27,11 +27,11 @@ class CensusOfDeutschlandNL1867Test extends \PHPUnit_Framework_TestCase { */ public function testPlaceAndDate() { $census = new CensusOfDeutschlandNL1867; - + $this->assertSame('Mecklenburg-Schwerin (Nachtragsliste), Deutschland', $census->censusPlace()); $this->assertSame('03 DEC 1867', $census->censusDate()); } - + /** * Test the census columns * @@ -41,7 +41,7 @@ class CensusOfDeutschlandNL1867Test extends \PHPUnit_Framework_TestCase { public function testColumns() { $census = new CensusOfDeutschlandNL1867; $columns = $census->columns(); - + $this->assertCount(18, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); @@ -80,7 +80,7 @@ class CensusOfDeutschlandNL1867Test extends \PHPUnit_Framework_TestCase { $this->assertSame('16.', $columns[15]->abbreviation()); $this->assertSame('17.', $columns[16]->abbreviation()); $this->assertSame('18.Aufenthaltsort', $columns[17]->abbreviation()); - + $this->assertSame('Ordnungs-Nummer.', $columns[0]->title()); $this->assertSame('I. Vor- und Familienname jeder Person. Vorname.', $columns[1]->title()); $this->assertSame('I. Vor- und Familienname jeder Person. Familienname.', $columns[2]->title()); @@ -100,4 +100,4 @@ class CensusOfDeutschlandNL1867Test extends \PHPUnit_Framework_TestCase { $this->assertSame('VII. Art des Aufenthalts am Zählungsort. Ueber ein Jahr, oder in anderer Art als nach Spalte 14 bis 16 Abwesende.', $columns[16]->title()); $this->assertSame('VIII. Vermuthlicher Aufenthaltsort zur Zählungszeit.', $columns[17]->title()); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusOfDeutschlandTest.php b/tests/app/Census/CensusOfDeutschlandTest.php index a83df57834..61d02e4b2d 100644 --- a/tests/app/Census/CensusOfDeutschlandTest.php +++ b/tests/app/Census/CensusOfDeutschlandTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 @@ -27,10 +27,10 @@ class CensusOfDeutschlandTest extends \PHPUnit_Framework_TestCase { */ public function testPlace() { $census = new CensusOfDeutschland; - + $this->assertSame('Deutschland', $census->censusPlace()); } - + /** * Test the census dates * @@ -38,9 +38,9 @@ class CensusOfDeutschlandTest extends \PHPUnit_Framework_TestCase { */ public function testAllDates() { $census = new CensusOfDeutschland; - + $census_dates = $census->allCensusDates(); - + $this->assertCount(5, $census_dates); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDeutschland1819', $census_dates[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDeutschland1867', $census_dates[1]); @@ -48,4 +48,4 @@ class CensusOfDeutschlandTest extends \PHPUnit_Framework_TestCase { $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDeutschland1900', $census_dates[3]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDeutschland1919', $census_dates[4]); } -}
\ No newline at end of file +} diff --git a/tests/app/Census/CensusOfEngland1841Test.php b/tests/app/Census/CensusOfEngland1841Test.php index 499bd87100..8038d39d90 100644 --- a/tests/app/Census/CensusOfEngland1841Test.php +++ b/tests/app/Census/CensusOfEngland1841Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1851Test.php b/tests/app/Census/CensusOfEngland1851Test.php index c990e0bd6c..15c9cd6fe6 100644 --- a/tests/app/Census/CensusOfEngland1851Test.php +++ b/tests/app/Census/CensusOfEngland1851Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1861Test.php b/tests/app/Census/CensusOfEngland1861Test.php index f6ff25c1f1..7a9a8ead4b 100644 --- a/tests/app/Census/CensusOfEngland1861Test.php +++ b/tests/app/Census/CensusOfEngland1861Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1871Test.php b/tests/app/Census/CensusOfEngland1871Test.php index afd753a992..fbcf90330b 100644 --- a/tests/app/Census/CensusOfEngland1871Test.php +++ b/tests/app/Census/CensusOfEngland1871Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1881Test.php b/tests/app/Census/CensusOfEngland1881Test.php index 0a60658ca1..e67154d667 100644 --- a/tests/app/Census/CensusOfEngland1881Test.php +++ b/tests/app/Census/CensusOfEngland1881Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1891Test.php b/tests/app/Census/CensusOfEngland1891Test.php index e122208967..94d952b353 100644 --- a/tests/app/Census/CensusOfEngland1891Test.php +++ b/tests/app/Census/CensusOfEngland1891Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1901Test.php b/tests/app/Census/CensusOfEngland1901Test.php index ae2577d4cc..77204776e0 100644 --- a/tests/app/Census/CensusOfEngland1901Test.php +++ b/tests/app/Census/CensusOfEngland1901Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEngland1911Test.php b/tests/app/Census/CensusOfEngland1911Test.php index 8e20e50ca2..3ae76ff940 100644 --- a/tests/app/Census/CensusOfEngland1911Test.php +++ b/tests/app/Census/CensusOfEngland1911Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfEnglandTest.php b/tests/app/Census/CensusOfEnglandTest.php index e9744df275..6c239d7f4a 100644 --- a/tests/app/Census/CensusOfEnglandTest.php +++ b/tests/app/Census/CensusOfEnglandTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1831Test.php b/tests/app/Census/CensusOfFrance1831Test.php index 69c683ce17..b5f4cd47cf 100644 --- a/tests/app/Census/CensusOfFrance1831Test.php +++ b/tests/app/Census/CensusOfFrance1831Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1836Test.php b/tests/app/Census/CensusOfFrance1836Test.php index 2d2d5ecfe6..29516ec26c 100644 --- a/tests/app/Census/CensusOfFrance1836Test.php +++ b/tests/app/Census/CensusOfFrance1836Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1841Test.php b/tests/app/Census/CensusOfFrance1841Test.php index a03bc1737e..0f1242033a 100644 --- a/tests/app/Census/CensusOfFrance1841Test.php +++ b/tests/app/Census/CensusOfFrance1841Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1851Test.php b/tests/app/Census/CensusOfFrance1851Test.php index 806a08d05e..6e7f4348f5 100644 --- a/tests/app/Census/CensusOfFrance1851Test.php +++ b/tests/app/Census/CensusOfFrance1851Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1856Test.php b/tests/app/Census/CensusOfFrance1856Test.php index 9fa142e523..6cf49989e8 100644 --- a/tests/app/Census/CensusOfFrance1856Test.php +++ b/tests/app/Census/CensusOfFrance1856Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1861Test.php b/tests/app/Census/CensusOfFrance1861Test.php index 5e87580690..cf5ee762f0 100644 --- a/tests/app/Census/CensusOfFrance1861Test.php +++ b/tests/app/Census/CensusOfFrance1861Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1866Test.php b/tests/app/Census/CensusOfFrance1866Test.php index 528d867cfb..aec2b71ab1 100644 --- a/tests/app/Census/CensusOfFrance1866Test.php +++ b/tests/app/Census/CensusOfFrance1866Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1872Test.php b/tests/app/Census/CensusOfFrance1872Test.php index d8c9e8295d..d4fdeda2fb 100644 --- a/tests/app/Census/CensusOfFrance1872Test.php +++ b/tests/app/Census/CensusOfFrance1872Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1876Test.php b/tests/app/Census/CensusOfFrance1876Test.php index 4adf29fe83..b972c1cdb5 100644 --- a/tests/app/Census/CensusOfFrance1876Test.php +++ b/tests/app/Census/CensusOfFrance1876Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1881Test.php b/tests/app/Census/CensusOfFrance1881Test.php index 0c0204377f..a465615273 100644 --- a/tests/app/Census/CensusOfFrance1881Test.php +++ b/tests/app/Census/CensusOfFrance1881Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1886Test.php b/tests/app/Census/CensusOfFrance1886Test.php index 21f741728f..b2258bf181 100644 --- a/tests/app/Census/CensusOfFrance1886Test.php +++ b/tests/app/Census/CensusOfFrance1886Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1891Test.php b/tests/app/Census/CensusOfFrance1891Test.php index 5be238cc7b..1d8df1b198 100644 --- a/tests/app/Census/CensusOfFrance1891Test.php +++ b/tests/app/Census/CensusOfFrance1891Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1896Test.php b/tests/app/Census/CensusOfFrance1896Test.php index 0565393eb0..8fa8d358f5 100644 --- a/tests/app/Census/CensusOfFrance1896Test.php +++ b/tests/app/Census/CensusOfFrance1896Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1901Test.php b/tests/app/Census/CensusOfFrance1901Test.php index a933f6ece3..8f1fcbe3f5 100644 --- a/tests/app/Census/CensusOfFrance1901Test.php +++ b/tests/app/Census/CensusOfFrance1901Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1906Test.php b/tests/app/Census/CensusOfFrance1906Test.php index 66a7ef4d2f..9b0bc79bc7 100644 --- a/tests/app/Census/CensusOfFrance1906Test.php +++ b/tests/app/Census/CensusOfFrance1906Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1911Test.php b/tests/app/Census/CensusOfFrance1911Test.php index 3ab9aee19c..020b8e0668 100644 --- a/tests/app/Census/CensusOfFrance1911Test.php +++ b/tests/app/Census/CensusOfFrance1911Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1921Test.php b/tests/app/Census/CensusOfFrance1921Test.php index cceb57851e..d311c57593 100644 --- a/tests/app/Census/CensusOfFrance1921Test.php +++ b/tests/app/Census/CensusOfFrance1921Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1926Test.php b/tests/app/Census/CensusOfFrance1926Test.php index fe930f0004..42282831c4 100644 --- a/tests/app/Census/CensusOfFrance1926Test.php +++ b/tests/app/Census/CensusOfFrance1926Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1936Test.php b/tests/app/Census/CensusOfFrance1936Test.php index 68866a9d9a..1e73931658 100644 --- a/tests/app/Census/CensusOfFrance1936Test.php +++ b/tests/app/Census/CensusOfFrance1936Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfFrance1946Test.php b/tests/app/Census/CensusOfFrance1946Test.php index 16b3b148ce..2ce91ff59b 100644 --- a/tests/app/Census/CensusOfFrance1946Test.php +++ b/tests/app/Census/CensusOfFrance1946Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1841Test.php b/tests/app/Census/CensusOfScotland1841Test.php index 920c7a123a..8a505e08e5 100644 --- a/tests/app/Census/CensusOfScotland1841Test.php +++ b/tests/app/Census/CensusOfScotland1841Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1851Test.php b/tests/app/Census/CensusOfScotland1851Test.php index 7a973b3d19..bd77d0b00c 100644 --- a/tests/app/Census/CensusOfScotland1851Test.php +++ b/tests/app/Census/CensusOfScotland1851Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1861Test.php b/tests/app/Census/CensusOfScotland1861Test.php index 2edd29b6c7..d48eb4cbef 100644 --- a/tests/app/Census/CensusOfScotland1861Test.php +++ b/tests/app/Census/CensusOfScotland1861Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1871Test.php b/tests/app/Census/CensusOfScotland1871Test.php index a4331381de..0fa6911051 100644 --- a/tests/app/Census/CensusOfScotland1871Test.php +++ b/tests/app/Census/CensusOfScotland1871Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1891Test.php b/tests/app/Census/CensusOfScotland1891Test.php index 17cb8493f0..2856d9d8d7 100644 --- a/tests/app/Census/CensusOfScotland1891Test.php +++ b/tests/app/Census/CensusOfScotland1891Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1901Test.php b/tests/app/Census/CensusOfScotland1901Test.php index eaba947569..fb4c45e1fb 100644 --- a/tests/app/Census/CensusOfScotland1901Test.php +++ b/tests/app/Census/CensusOfScotland1901Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotland1911Test.php b/tests/app/Census/CensusOfScotland1911Test.php index c4ddd3900e..eaf281ec94 100644 --- a/tests/app/Census/CensusOfScotland1911Test.php +++ b/tests/app/Census/CensusOfScotland1911Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfScotlandTest.php b/tests/app/Census/CensusOfScotlandTest.php index 4ce8145859..0b90f96a03 100644 --- a/tests/app/Census/CensusOfScotlandTest.php +++ b/tests/app/Census/CensusOfScotlandTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1790Test.php b/tests/app/Census/CensusOfUnitedStates1790Test.php index 76c930db97..4bc04976a5 100644 --- a/tests/app/Census/CensusOfUnitedStates1790Test.php +++ b/tests/app/Census/CensusOfUnitedStates1790Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1800Test.php b/tests/app/Census/CensusOfUnitedStates1800Test.php index 6dd168f5ed..4c8a3e6563 100644 --- a/tests/app/Census/CensusOfUnitedStates1800Test.php +++ b/tests/app/Census/CensusOfUnitedStates1800Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1810Test.php b/tests/app/Census/CensusOfUnitedStates1810Test.php index 77a23604fd..1338442626 100644 --- a/tests/app/Census/CensusOfUnitedStates1810Test.php +++ b/tests/app/Census/CensusOfUnitedStates1810Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1820Test.php b/tests/app/Census/CensusOfUnitedStates1820Test.php index ce50c6dcff..fd06eab0aa 100644 --- a/tests/app/Census/CensusOfUnitedStates1820Test.php +++ b/tests/app/Census/CensusOfUnitedStates1820Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1830Test.php b/tests/app/Census/CensusOfUnitedStates1830Test.php index 4f4a25d78e..94c011607f 100644 --- a/tests/app/Census/CensusOfUnitedStates1830Test.php +++ b/tests/app/Census/CensusOfUnitedStates1830Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1840Test.php b/tests/app/Census/CensusOfUnitedStates1840Test.php index 4a48ceb0dc..cde1e2f574 100644 --- a/tests/app/Census/CensusOfUnitedStates1840Test.php +++ b/tests/app/Census/CensusOfUnitedStates1840Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1850Test.php b/tests/app/Census/CensusOfUnitedStates1850Test.php index 180df4a645..0cc80b4a6e 100644 --- a/tests/app/Census/CensusOfUnitedStates1850Test.php +++ b/tests/app/Census/CensusOfUnitedStates1850Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1860Test.php b/tests/app/Census/CensusOfUnitedStates1860Test.php index 68e060be50..f5bbf8e1ac 100644 --- a/tests/app/Census/CensusOfUnitedStates1860Test.php +++ b/tests/app/Census/CensusOfUnitedStates1860Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1880Test.php b/tests/app/Census/CensusOfUnitedStates1880Test.php index 36c2c0f4cb..656dfe8216 100644 --- a/tests/app/Census/CensusOfUnitedStates1880Test.php +++ b/tests/app/Census/CensusOfUnitedStates1880Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1890Test.php b/tests/app/Census/CensusOfUnitedStates1890Test.php index ddde1b6554..1ae8f484db 100644 --- a/tests/app/Census/CensusOfUnitedStates1890Test.php +++ b/tests/app/Census/CensusOfUnitedStates1890Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1900Test.php b/tests/app/Census/CensusOfUnitedStates1900Test.php index 47f1008d7a..1e1d88e393 100644 --- a/tests/app/Census/CensusOfUnitedStates1900Test.php +++ b/tests/app/Census/CensusOfUnitedStates1900Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1910Test.php b/tests/app/Census/CensusOfUnitedStates1910Test.php index b2d620d70d..9e5b4a7d15 100644 --- a/tests/app/Census/CensusOfUnitedStates1910Test.php +++ b/tests/app/Census/CensusOfUnitedStates1910Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1920Test.php b/tests/app/Census/CensusOfUnitedStates1920Test.php index 67e9ecd196..33eccb143d 100644 --- a/tests/app/Census/CensusOfUnitedStates1920Test.php +++ b/tests/app/Census/CensusOfUnitedStates1920Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1930Test.php b/tests/app/Census/CensusOfUnitedStates1930Test.php index 06926d1e3e..49301e339e 100644 --- a/tests/app/Census/CensusOfUnitedStates1930Test.php +++ b/tests/app/Census/CensusOfUnitedStates1930Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfUnitedStates1940Test.php b/tests/app/Census/CensusOfUnitedStates1940Test.php index 470430a21f..0b9190d504 100644 --- a/tests/app/Census/CensusOfUnitedStates1940Test.php +++ b/tests/app/Census/CensusOfUnitedStates1940Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1841Test.php b/tests/app/Census/CensusOfWales1841Test.php index 2224425fc1..75ae78dd39 100644 --- a/tests/app/Census/CensusOfWales1841Test.php +++ b/tests/app/Census/CensusOfWales1841Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1861Test.php b/tests/app/Census/CensusOfWales1861Test.php index 0386f3ef35..d79a789c07 100644 --- a/tests/app/Census/CensusOfWales1861Test.php +++ b/tests/app/Census/CensusOfWales1861Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1871Test.php b/tests/app/Census/CensusOfWales1871Test.php index b679fc914e..af79a59617 100644 --- a/tests/app/Census/CensusOfWales1871Test.php +++ b/tests/app/Census/CensusOfWales1871Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1881Test.php b/tests/app/Census/CensusOfWales1881Test.php index 6de87b2277..2266fbb36f 100644 --- a/tests/app/Census/CensusOfWales1881Test.php +++ b/tests/app/Census/CensusOfWales1881Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1891Test.php b/tests/app/Census/CensusOfWales1891Test.php index 45c353e62f..ce6fb816d9 100644 --- a/tests/app/Census/CensusOfWales1891Test.php +++ b/tests/app/Census/CensusOfWales1891Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWales1901Test.php b/tests/app/Census/CensusOfWales1901Test.php index 79bf2a5476..c58dc5a7c7 100644 --- a/tests/app/Census/CensusOfWales1901Test.php +++ b/tests/app/Census/CensusOfWales1901Test.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusOfWalesTest.php b/tests/app/Census/CensusOfWalesTest.php index 04fbc27840..8dbb12bc43 100644 --- a/tests/app/Census/CensusOfWalesTest.php +++ b/tests/app/Census/CensusOfWalesTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 diff --git a/tests/app/Census/CensusTest.php b/tests/app/Census/CensusTest.php index b111d1eb37..7d1760a59a 100644 --- a/tests/app/Census/CensusTest.php +++ b/tests/app/Census/CensusTest.php @@ -2,7 +2,7 @@ /** * webtrees: online genealogy - * Copyright (C) 2016 webtrees development team + * Copyright (C) 2017 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 |
