diff options
Diffstat (limited to 'tests')
309 files changed, 350 insertions, 350 deletions
diff --git a/tests/app/AuthTest.php b/tests/app/AuthTest.php index a338f3997b..9fe17865d0 100644 --- a/tests/app/AuthTest.php +++ b/tests/app/AuthTest.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/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 diff --git a/tests/app/Controller/AdvancedSearchControllerTest.php b/tests/app/Controller/AdvancedSearchControllerTest.php index 92f9f68acc..06784b7f88 100644 --- a/tests/app/Controller/AdvancedSearchControllerTest.php +++ b/tests/app/Controller/AdvancedSearchControllerTest.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/Controller/AjaxControllerTest.php b/tests/app/Controller/AjaxControllerTest.php index 63205597a3..d03b010981 100644 --- a/tests/app/Controller/AjaxControllerTest.php +++ b/tests/app/Controller/AjaxControllerTest.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/Controller/AncestryControllerTest.php b/tests/app/Controller/AncestryControllerTest.php index 3daaba0d54..2a3e22e0c1 100644 --- a/tests/app/Controller/AncestryControllerTest.php +++ b/tests/app/Controller/AncestryControllerTest.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/Controller/BaseControllerTest.php b/tests/app/Controller/BaseControllerTest.php index 104245ea6f..fc1b089a05 100644 --- a/tests/app/Controller/BaseControllerTest.php +++ b/tests/app/Controller/BaseControllerTest.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/Controller/BranchesControllerTest.php b/tests/app/Controller/BranchesControllerTest.php index 2d45ed533a..804e85d018 100644 --- a/tests/app/Controller/BranchesControllerTest.php +++ b/tests/app/Controller/BranchesControllerTest.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/Controller/ChartControllerTest.php b/tests/app/Controller/ChartControllerTest.php index d66aa01227..c3b7d588ac 100644 --- a/tests/app/Controller/ChartControllerTest.php +++ b/tests/app/Controller/ChartControllerTest.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/Controller/CompactControllerTest.php b/tests/app/Controller/CompactControllerTest.php index 0a0edf79fd..245557dd62 100644 --- a/tests/app/Controller/CompactControllerTest.php +++ b/tests/app/Controller/CompactControllerTest.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/Controller/DescendancyControllerTest.php b/tests/app/Controller/DescendancyControllerTest.php index 06dd5f240e..4498b5efc2 100644 --- a/tests/app/Controller/DescendancyControllerTest.php +++ b/tests/app/Controller/DescendancyControllerTest.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/Controller/FamilyControllerTest.php b/tests/app/Controller/FamilyControllerTest.php index 740726edaf..4f4823a5f8 100644 --- a/tests/app/Controller/FamilyControllerTest.php +++ b/tests/app/Controller/FamilyControllerTest.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/Controller/FamilybookControllerTest.php b/tests/app/Controller/FamilybookControllerTest.php index e204e320e1..3645077e0a 100644 --- a/tests/app/Controller/FamilybookControllerTest.php +++ b/tests/app/Controller/FamilybookControllerTest.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/Controller/FanchartControllerTest.php b/tests/app/Controller/FanchartControllerTest.php index 17c51c127e..b270a2869d 100644 --- a/tests/app/Controller/FanchartControllerTest.php +++ b/tests/app/Controller/FanchartControllerTest.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/Controller/GedcomRecordControllerTest.php b/tests/app/Controller/GedcomRecordControllerTest.php index f42d9d4a92..c65e011333 100644 --- a/tests/app/Controller/GedcomRecordControllerTest.php +++ b/tests/app/Controller/GedcomRecordControllerTest.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/Controller/HourglassControllerTest.php b/tests/app/Controller/HourglassControllerTest.php index eb6e234ec1..ecba4558fb 100644 --- a/tests/app/Controller/HourglassControllerTest.php +++ b/tests/app/Controller/HourglassControllerTest.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/Controller/IndividualControllerTest.php b/tests/app/Controller/IndividualControllerTest.php index 699660b006..2da1110500 100644 --- a/tests/app/Controller/IndividualControllerTest.php +++ b/tests/app/Controller/IndividualControllerTest.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/Controller/LifespanControllerTest.php b/tests/app/Controller/LifespanControllerTest.php index f4e20c8204..579837d146 100644 --- a/tests/app/Controller/LifespanControllerTest.php +++ b/tests/app/Controller/LifespanControllerTest.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/Controller/MediaControllerTest.php b/tests/app/Controller/MediaControllerTest.php index fac0de8440..c315a759ad 100644 --- a/tests/app/Controller/MediaControllerTest.php +++ b/tests/app/Controller/MediaControllerTest.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/Controller/NoteControllerTest.php b/tests/app/Controller/NoteControllerTest.php index 6fd076dd58..e0d48b1f40 100644 --- a/tests/app/Controller/NoteControllerTest.php +++ b/tests/app/Controller/NoteControllerTest.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/Controller/PageControllerTest.php b/tests/app/Controller/PageControllerTest.php index 3f16368960..24a1659516 100644 --- a/tests/app/Controller/PageControllerTest.php +++ b/tests/app/Controller/PageControllerTest.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/Controller/PedigreeControllerTest.php b/tests/app/Controller/PedigreeControllerTest.php index 5644403b08..6b9ed2184e 100644 --- a/tests/app/Controller/PedigreeControllerTest.php +++ b/tests/app/Controller/PedigreeControllerTest.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/Controller/RepositoryControllerTest.php b/tests/app/Controller/RepositoryControllerTest.php index 8593bb95d8..31b139d104 100644 --- a/tests/app/Controller/RepositoryControllerTest.php +++ b/tests/app/Controller/RepositoryControllerTest.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/Controller/SearchControllerTest.php b/tests/app/Controller/SearchControllerTest.php index 8cfd0de14a..e4a2bcb05c 100644 --- a/tests/app/Controller/SearchControllerTest.php +++ b/tests/app/Controller/SearchControllerTest.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/Controller/SimpleControllerTest.php b/tests/app/Controller/SimpleControllerTest.php index f4c2098dc6..2a4be60d57 100644 --- a/tests/app/Controller/SimpleControllerTest.php +++ b/tests/app/Controller/SimpleControllerTest.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/Controller/SourceControllerTest.php b/tests/app/Controller/SourceControllerTest.php index d6fce28c1d..d8395ae644 100644 --- a/tests/app/Controller/SourceControllerTest.php +++ b/tests/app/Controller/SourceControllerTest.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/Controller/TimelineControllerTest.php b/tests/app/Controller/TimelineControllerTest.php index 7d06b661c5..eafbc50813 100644 --- a/tests/app/Controller/TimelineControllerTest.php +++ b/tests/app/Controller/TimelineControllerTest.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/DatabaseTest.php b/tests/app/DatabaseTest.php index 3db537c2c8..4bda366b3f 100644 --- a/tests/app/DatabaseTest.php +++ b/tests/app/DatabaseTest.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/Date/CalendarDateTest.php b/tests/app/Date/CalendarDateTest.php index 75b2938ed9..d1440e8eda 100644 --- a/tests/app/Date/CalendarDateTest.php +++ b/tests/app/Date/CalendarDateTest.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/Date/FrenchDateTest.php b/tests/app/Date/FrenchDateTest.php index 15f87c028a..16815e8e9f 100644 --- a/tests/app/Date/FrenchDateTest.php +++ b/tests/app/Date/FrenchDateTest.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/Date/GregorianDateTest.php b/tests/app/Date/GregorianDateTest.php index 6b64995b40..c2649168cc 100644 --- a/tests/app/Date/GregorianDateTest.php +++ b/tests/app/Date/GregorianDateTest.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/Date/HijriDateTest.php b/tests/app/Date/HijriDateTest.php index cece025287..1fc3142971 100644 --- a/tests/app/Date/HijriDateTest.php +++ b/tests/app/Date/HijriDateTest.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/Date/JalaliDateTest.php b/tests/app/Date/JalaliDateTest.php index 7af1709c4e..f7d2b18044 100644 --- a/tests/app/Date/JalaliDateTest.php +++ b/tests/app/Date/JalaliDateTest.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/Date/JewishDateTest.php b/tests/app/Date/JewishDateTest.php index f9700e5cfa..0688cda2f4 100644 --- a/tests/app/Date/JewishDateTest.php +++ b/tests/app/Date/JewishDateTest.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/Date/JulianDateTest.php b/tests/app/Date/JulianDateTest.php index ddc426ca5f..8e8e8110fe 100644 --- a/tests/app/Date/JulianDateTest.php +++ b/tests/app/Date/JulianDateTest.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/Date/RomanDateTest.php b/tests/app/Date/RomanDateTest.php index 48f17e36f0..259c4d2244 100644 --- a/tests/app/Date/RomanDateTest.php +++ b/tests/app/Date/RomanDateTest.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/DateTest.php b/tests/app/DateTest.php index f5359a365f..382d040413 100644 --- a/tests/app/DateTest.php +++ b/tests/app/DateTest.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/FactTest.php b/tests/app/FactTest.php index d5fe8cc3ba..0dfcb4f8e9 100644 --- a/tests/app/FactTest.php +++ b/tests/app/FactTest.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/FamilyTest.php b/tests/app/FamilyTest.php index 663174b6f9..7582e3af3f 100644 --- a/tests/app/FamilyTest.php +++ b/tests/app/FamilyTest.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/FileTest.php b/tests/app/FileTest.php index 6048f0a4b4..9569cd0e2d 100644 --- a/tests/app/FileTest.php +++ b/tests/app/FileTest.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/FilterTest.php b/tests/app/FilterTest.php index bc37794091..267f70921a 100644 --- a/tests/app/FilterTest.php +++ b/tests/app/FilterTest.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/FlashMessagesTest.php b/tests/app/FlashMessagesTest.php index 7a8e92b0c8..43fe047f54 100644 --- a/tests/app/FlashMessagesTest.php +++ b/tests/app/FlashMessagesTest.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/Functions/FunctionsChartsTest.php b/tests/app/Functions/FunctionsChartsTest.php index 8603133a48..8ed0e02a38 100644 --- a/tests/app/Functions/FunctionsChartsTest.php +++ b/tests/app/Functions/FunctionsChartsTest.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/Functions/FunctionsDateTest.php b/tests/app/Functions/FunctionsDateTest.php index 7d911e2aac..c779e6c2d5 100644 --- a/tests/app/Functions/FunctionsDateTest.php +++ b/tests/app/Functions/FunctionsDateTest.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/Functions/FunctionsDbTest.php b/tests/app/Functions/FunctionsDbTest.php index 9a2183afa1..81d15af85e 100644 --- a/tests/app/Functions/FunctionsDbTest.php +++ b/tests/app/Functions/FunctionsDbTest.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/Functions/FunctionsEditTest.php b/tests/app/Functions/FunctionsEditTest.php index f0511b2257..34f59fe6fe 100644 --- a/tests/app/Functions/FunctionsEditTest.php +++ b/tests/app/Functions/FunctionsEditTest.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/Functions/FunctionsExportTest.php b/tests/app/Functions/FunctionsExportTest.php index d55a1f2f44..4acd29ccf6 100644 --- a/tests/app/Functions/FunctionsExportTest.php +++ b/tests/app/Functions/FunctionsExportTest.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/Functions/FunctionsImportTest.php b/tests/app/Functions/FunctionsImportTest.php index e6f5330c2d..03080ed7e7 100644 --- a/tests/app/Functions/FunctionsImportTest.php +++ b/tests/app/Functions/FunctionsImportTest.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/Functions/FunctionsMediaTest.php b/tests/app/Functions/FunctionsMediaTest.php index 7943243735..449338f036 100644 --- a/tests/app/Functions/FunctionsMediaTest.php +++ b/tests/app/Functions/FunctionsMediaTest.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/Functions/FunctionsPrintFactsTest.php b/tests/app/Functions/FunctionsPrintFactsTest.php index af61ba15fd..c01a6181b7 100644 --- a/tests/app/Functions/FunctionsPrintFactsTest.php +++ b/tests/app/Functions/FunctionsPrintFactsTest.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/Functions/FunctionsPrintListsTest.php b/tests/app/Functions/FunctionsPrintListsTest.php index be022480ec..4bf1b7da4b 100644 --- a/tests/app/Functions/FunctionsPrintListsTest.php +++ b/tests/app/Functions/FunctionsPrintListsTest.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/Functions/FunctionsPrintTest.php b/tests/app/Functions/FunctionsPrintTest.php index 9c0c9c6617..4b8bd18b87 100644 --- a/tests/app/Functions/FunctionsPrintTest.php +++ b/tests/app/Functions/FunctionsPrintTest.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/Functions/FunctionsRtlTest.php b/tests/app/Functions/FunctionsRtlTest.php index 93872d2012..aae4848d44 100644 --- a/tests/app/Functions/FunctionsRtlTest.php +++ b/tests/app/Functions/FunctionsRtlTest.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/Functions/FunctionsTest.php b/tests/app/Functions/FunctionsTest.php index 1975f85e44..6c11355739 100644 --- a/tests/app/Functions/FunctionsTest.php +++ b/tests/app/Functions/FunctionsTest.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/GedcomRecordTest.php b/tests/app/GedcomRecordTest.php index 5ebfa24138..9851450ac7 100644 --- a/tests/app/GedcomRecordTest.php +++ b/tests/app/GedcomRecordTest.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/GedcomTagTest.php b/tests/app/GedcomTagTest.php index 8abd27910d..ee9ed1adfa 100644 --- a/tests/app/GedcomTagTest.php +++ b/tests/app/GedcomTagTest.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/I18NTest.php b/tests/app/I18NTest.php index ec4f647d30..a8c9a4a084 100644 --- a/tests/app/I18NTest.php +++ b/tests/app/I18NTest.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/IndividualTest.php b/tests/app/IndividualTest.php index cb3b1eabda..843af42c8f 100644 --- a/tests/app/IndividualTest.php +++ b/tests/app/IndividualTest.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/LogTest.php b/tests/app/LogTest.php index 047cdc3ff4..2aa219fa3a 100644 --- a/tests/app/LogTest.php +++ b/tests/app/LogTest.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/MailTest.php b/tests/app/MailTest.php index 6deb3ec7e6..975ab4c59c 100644 --- a/tests/app/MailTest.php +++ b/tests/app/MailTest.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/MediaTest.php b/tests/app/MediaTest.php index 3cfd8ed30e..09d64c3058 100644 --- a/tests/app/MediaTest.php +++ b/tests/app/MediaTest.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/MenuTest.php b/tests/app/MenuTest.php index 64fcf7ba21..cce2ea9ef4 100644 --- a/tests/app/MenuTest.php +++ b/tests/app/MenuTest.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/Module/AbstractModuleTest.php b/tests/app/Module/AbstractModuleTest.php index 0a86989108..324cf5b740 100644 --- a/tests/app/Module/AbstractModuleTest.php +++ b/tests/app/Module/AbstractModuleTest.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/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php index 262ae76f78..cfbd85cbc2 100644 --- a/tests/app/Module/AhnentafelReportModuleTest.php +++ b/tests/app/Module/AhnentafelReportModuleTest.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/Module/AlbumModuleTest.php b/tests/app/Module/AlbumModuleTest.php index 14b3694016..e9a705c321 100644 --- a/tests/app/Module/AlbumModuleTest.php +++ b/tests/app/Module/AlbumModuleTest.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/Module/AncestorsChartModuleTest.php b/tests/app/Module/AncestorsChartModuleTest.php index dfdaefede4..5d111111a2 100644 --- a/tests/app/Module/AncestorsChartModuleTest.php +++ b/tests/app/Module/AncestorsChartModuleTest.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/Module/BatchUpdate/BatchUpdateBasePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php index b80a6afde8..b1965fecd8 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.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/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php index c4c29a38c9..da704d6954 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.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/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php index aadf78bd0b..40b2fe41e8 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.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/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php index 7babb48525..c276658a81 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.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/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php index 0d4f6945f1..b7a616ce1f 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.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/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php index ee44ded32c..4cc13aedeb 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.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/Module/BatchUpdateModuleTest.php b/tests/app/Module/BatchUpdateModuleTest.php index f998a1d611..a79dbac692 100644 --- a/tests/app/Module/BatchUpdateModuleTest.php +++ b/tests/app/Module/BatchUpdateModuleTest.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/Module/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BirthDeathMarriageReportModuleTest.php index 69bf756d82..8cee588865 100644 --- a/tests/app/Module/BirthDeathMarriageReportModuleTest.php +++ b/tests/app/Module/BirthDeathMarriageReportModuleTest.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/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php index 24e1e21979..ce0d1a2073 100644 --- a/tests/app/Module/BirthReportModuleTest.php +++ b/tests/app/Module/BirthReportModuleTest.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/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php index c68cae4a59..c13dc5e405 100644 --- a/tests/app/Module/CemeteryReportModuleTest.php +++ b/tests/app/Module/CemeteryReportModuleTest.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/Module/CensusAssistantModuleTest.php b/tests/app/Module/CensusAssistantModuleTest.php index 2493afb740..3888858f36 100644 --- a/tests/app/Module/CensusAssistantModuleTest.php +++ b/tests/app/Module/CensusAssistantModuleTest.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/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php index a16e419c2f..074ae937e8 100644 --- a/tests/app/Module/ChangeReportModuleTest.php +++ b/tests/app/Module/ChangeReportModuleTest.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/Module/ChartsBlockModuleTest.php b/tests/app/Module/ChartsBlockModuleTest.php index 8d047135d1..1f121b2a98 100644 --- a/tests/app/Module/ChartsBlockModuleTest.php +++ b/tests/app/Module/ChartsBlockModuleTest.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/Module/CkeditorModuleTest.php b/tests/app/Module/CkeditorModuleTest.php index 5eaf688ae2..86664f9b4f 100644 --- a/tests/app/Module/CkeditorModuleTest.php +++ b/tests/app/Module/CkeditorModuleTest.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/Module/ClippingsCart/ClippingsCartControllerTest.php b/tests/app/Module/ClippingsCart/ClippingsCartControllerTest.php index b1914f00e6..a66984238b 100644 --- a/tests/app/Module/ClippingsCart/ClippingsCartControllerTest.php +++ b/tests/app/Module/ClippingsCart/ClippingsCartControllerTest.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/Module/ClippingsCartModuleTest.php b/tests/app/Module/ClippingsCartModuleTest.php index a0c70cf1f7..6812d64277 100644 --- a/tests/app/Module/ClippingsCartModuleTest.php +++ b/tests/app/Module/ClippingsCartModuleTest.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/Module/CompactTreeChartModuleTest.php b/tests/app/Module/CompactTreeChartModuleTest.php index dfe1595344..d992f5e5b5 100644 --- a/tests/app/Module/CompactTreeChartModuleTest.php +++ b/tests/app/Module/CompactTreeChartModuleTest.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/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php index 477a47fa7c..b616457f77 100644 --- a/tests/app/Module/DeathReportModuleTest.php +++ b/tests/app/Module/DeathReportModuleTest.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/Module/DescendancyChartModuleTest.php b/tests/app/Module/DescendancyChartModuleTest.php index 1f7a1d9309..499c3229f2 100644 --- a/tests/app/Module/DescendancyChartModuleTest.php +++ b/tests/app/Module/DescendancyChartModuleTest.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/Module/DescendancyModuleTest.php b/tests/app/Module/DescendancyModuleTest.php index 29cc4ff702..1125eb8946 100644 --- a/tests/app/Module/DescendancyModuleTest.php +++ b/tests/app/Module/DescendancyModuleTest.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/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php index 400aa46bfd..2ebeb1cf7e 100644 --- a/tests/app/Module/DescendancyReportModuleTest.php +++ b/tests/app/Module/DescendancyReportModuleTest.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/Module/ExtraInformationModuleTest.php b/tests/app/Module/ExtraInformationModuleTest.php index 8bbdd5f4d9..6240f831a3 100644 --- a/tests/app/Module/ExtraInformationModuleTest.php +++ b/tests/app/Module/ExtraInformationModuleTest.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/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php index 17a0a2c008..a293a8cfe7 100644 --- a/tests/app/Module/FactSourcesReportModuleTest.php +++ b/tests/app/Module/FactSourcesReportModuleTest.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/Module/FamiliesSidebarModuleTest.php b/tests/app/Module/FamiliesSidebarModuleTest.php index 4aa35411f9..0567f453c8 100644 --- a/tests/app/Module/FamiliesSidebarModuleTest.php +++ b/tests/app/Module/FamiliesSidebarModuleTest.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/Module/FamilyBookChartModuleTest.php b/tests/app/Module/FamilyBookChartModuleTest.php index 313cc58d54..4c9e161b64 100644 --- a/tests/app/Module/FamilyBookChartModuleTest.php +++ b/tests/app/Module/FamilyBookChartModuleTest.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/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php index 391e702386..7a95a4b73f 100644 --- a/tests/app/Module/FamilyGroupReportModuleTest.php +++ b/tests/app/Module/FamilyGroupReportModuleTest.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/Module/FamilyNavigatorModuleTest.php b/tests/app/Module/FamilyNavigatorModuleTest.php index 8578a74cca..51953371ce 100644 --- a/tests/app/Module/FamilyNavigatorModuleTest.php +++ b/tests/app/Module/FamilyNavigatorModuleTest.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/Module/FamilyTreeFavoritesModuleTest.php b/tests/app/Module/FamilyTreeFavoritesModuleTest.php index 162717ab33..00c598af13 100644 --- a/tests/app/Module/FamilyTreeFavoritesModuleTest.php +++ b/tests/app/Module/FamilyTreeFavoritesModuleTest.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/Module/FamilyTreeNewsModuleTest.php b/tests/app/Module/FamilyTreeNewsModuleTest.php index 3b4e2e2852..71793fe1e2 100644 --- a/tests/app/Module/FamilyTreeNewsModuleTest.php +++ b/tests/app/Module/FamilyTreeNewsModuleTest.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/Module/FamilyTreeStatisticsModuleTest.php b/tests/app/Module/FamilyTreeStatisticsModuleTest.php index da59119b79..0bd84c4003 100644 --- a/tests/app/Module/FamilyTreeStatisticsModuleTest.php +++ b/tests/app/Module/FamilyTreeStatisticsModuleTest.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/Module/FanChartModuleTest.php b/tests/app/Module/FanChartModuleTest.php index 3ad008be79..c025e6e195 100644 --- a/tests/app/Module/FanChartModuleTest.php +++ b/tests/app/Module/FanChartModuleTest.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/Module/FrequentlyAskedQuestionsModuleTest.php b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php index 934978fd78..6c42b3d754 100644 --- a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php +++ b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.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/Module/GoogleMapsModuleTest.php b/tests/app/Module/GoogleMapsModuleTest.php index 827620d412..561dee2d72 100644 --- a/tests/app/Module/GoogleMapsModuleTest.php +++ b/tests/app/Module/GoogleMapsModuleTest.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/Module/HourglassChartModuleTest.php b/tests/app/Module/HourglassChartModuleTest.php index db1cdced33..e0a7e651f0 100644 --- a/tests/app/Module/HourglassChartModuleTest.php +++ b/tests/app/Module/HourglassChartModuleTest.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/Module/HtmlBlockModuleTest.php b/tests/app/Module/HtmlBlockModuleTest.php index 34e3185b1f..76050366a5 100644 --- a/tests/app/Module/HtmlBlockModuleTest.php +++ b/tests/app/Module/HtmlBlockModuleTest.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/Module/IndividualFactsTabModuleTest.php b/tests/app/Module/IndividualFactsTabModuleTest.php index 63bcc2bed5..6642c99b2e 100644 --- a/tests/app/Module/IndividualFactsTabModuleTest.php +++ b/tests/app/Module/IndividualFactsTabModuleTest.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/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php index d904c7734f..bfa2af5d9f 100644 --- a/tests/app/Module/IndividualFamiliesReportModuleTest.php +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.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/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php index 5cb04a6eca..02b954db63 100644 --- a/tests/app/Module/IndividualReportModuleTest.php +++ b/tests/app/Module/IndividualReportModuleTest.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/Module/IndividualSidebarModuleTest.php b/tests/app/Module/IndividualSidebarModuleTest.php index 2b38a511e0..ebffb484f9 100644 --- a/tests/app/Module/IndividualSidebarModuleTest.php +++ b/tests/app/Module/IndividualSidebarModuleTest.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/Module/InteractiveTree/TreeViewTest.php b/tests/app/Module/InteractiveTree/TreeViewTest.php index c65eed6f3c..8056848727 100644 --- a/tests/app/Module/InteractiveTree/TreeViewTest.php +++ b/tests/app/Module/InteractiveTree/TreeViewTest.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/Module/InteractiveTreeModuleTest.php b/tests/app/Module/InteractiveTreeModuleTest.php index 64575f36d3..9fbbe43674 100644 --- a/tests/app/Module/InteractiveTreeModuleTest.php +++ b/tests/app/Module/InteractiveTreeModuleTest.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/Module/LifespansChartModuleTest.php b/tests/app/Module/LifespansChartModuleTest.php index d470b5a8bb..125cef7f96 100644 --- a/tests/app/Module/LifespansChartModuleTest.php +++ b/tests/app/Module/LifespansChartModuleTest.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/Module/LoggedInUsersModuleTest.php b/tests/app/Module/LoggedInUsersModuleTest.php index 583aceae26..f4732e64e8 100644 --- a/tests/app/Module/LoggedInUsersModuleTest.php +++ b/tests/app/Module/LoggedInUsersModuleTest.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/Module/LoginBlockModuleTest.php b/tests/app/Module/LoginBlockModuleTest.php index b016845238..e168d29d8e 100644 --- a/tests/app/Module/LoginBlockModuleTest.php +++ b/tests/app/Module/LoginBlockModuleTest.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/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php index 812057d5f4..5af9dbc33c 100644 --- a/tests/app/Module/MarriageReportModuleTest.php +++ b/tests/app/Module/MarriageReportModuleTest.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/Module/MediaTabModuleTest.php b/tests/app/Module/MediaTabModuleTest.php index 5cb58e431d..94004d60df 100644 --- a/tests/app/Module/MediaTabModuleTest.php +++ b/tests/app/Module/MediaTabModuleTest.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/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php index cec9afc4a9..0aa1f8953d 100644 --- a/tests/app/Module/MissingFactsReportModuleTest.php +++ b/tests/app/Module/MissingFactsReportModuleTest.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/Module/ModuleBlockInterfaceTest.php b/tests/app/Module/ModuleBlockInterfaceTest.php index 0bfdb79c00..b99c9e0c6b 100644 --- a/tests/app/Module/ModuleBlockInterfaceTest.php +++ b/tests/app/Module/ModuleBlockInterfaceTest.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/Module/ModuleChartInterfaceTest.php b/tests/app/Module/ModuleChartInterfaceTest.php index c484d19f5f..b6017a5849 100644 --- a/tests/app/Module/ModuleChartInterfaceTest.php +++ b/tests/app/Module/ModuleChartInterfaceTest.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/Module/ModuleConfigInterfaceTest.php b/tests/app/Module/ModuleConfigInterfaceTest.php index f5d1b10297..5b433cd5f0 100644 --- a/tests/app/Module/ModuleConfigInterfaceTest.php +++ b/tests/app/Module/ModuleConfigInterfaceTest.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/Module/ModuleMenuInterfaceTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php index d3b1115d00..a9e03d4425 100644 --- a/tests/app/Module/ModuleMenuInterfaceTest.php +++ b/tests/app/Module/ModuleMenuInterfaceTest.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/Module/ModuleReportInterfaceTest.php b/tests/app/Module/ModuleReportInterfaceTest.php index 023987653f..ba95231055 100644 --- a/tests/app/Module/ModuleReportInterfaceTest.php +++ b/tests/app/Module/ModuleReportInterfaceTest.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/Module/ModuleSidebarInterfaceTest.php b/tests/app/Module/ModuleSidebarInterfaceTest.php index cc8970a488..983c7abbc9 100644 --- a/tests/app/Module/ModuleSidebarInterfaceTest.php +++ b/tests/app/Module/ModuleSidebarInterfaceTest.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/Module/ModuleTabInterfaceTest.php b/tests/app/Module/ModuleTabInterfaceTest.php index 0d66d511f5..9d27ca621d 100644 --- a/tests/app/Module/ModuleTabInterfaceTest.php +++ b/tests/app/Module/ModuleTabInterfaceTest.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/Module/ModuleThemeInterfaceTest.php b/tests/app/Module/ModuleThemeInterfaceTest.php index a29a687f5c..70ba738faa 100644 --- a/tests/app/Module/ModuleThemeInterfaceTest.php +++ b/tests/app/Module/ModuleThemeInterfaceTest.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/Module/NotesTabModuleTest.php b/tests/app/Module/NotesTabModuleTest.php index 07f9546040..8ad92f4f1b 100644 --- a/tests/app/Module/NotesTabModuleTest.php +++ b/tests/app/Module/NotesTabModuleTest.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/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php index b683c09147..ee7f132d18 100644 --- a/tests/app/Module/OccupationReportModuleTest.php +++ b/tests/app/Module/OccupationReportModuleTest.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/Module/OnThisDayModuleTest.php b/tests/app/Module/OnThisDayModuleTest.php index 356888b879..9f3dfb6041 100644 --- a/tests/app/Module/OnThisDayModuleTest.php +++ b/tests/app/Module/OnThisDayModuleTest.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/Module/PageMenuModuleTest.php b/tests/app/Module/PageMenuModuleTest.php index 33849f1973..4d10589220 100644 --- a/tests/app/Module/PageMenuModuleTest.php +++ b/tests/app/Module/PageMenuModuleTest.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/Module/PedigreeChartModuleTest.php b/tests/app/Module/PedigreeChartModuleTest.php index 3f5d1fb85d..c6a378431b 100644 --- a/tests/app/Module/PedigreeChartModuleTest.php +++ b/tests/app/Module/PedigreeChartModuleTest.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/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php index 9b6224fc77..ef17ed73cc 100644 --- a/tests/app/Module/PedigreeReportModuleTest.php +++ b/tests/app/Module/PedigreeReportModuleTest.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/Module/RecentChangesModuleTest.php b/tests/app/Module/RecentChangesModuleTest.php index 08153ca486..2ef0b6258d 100644 --- a/tests/app/Module/RecentChangesModuleTest.php +++ b/tests/app/Module/RecentChangesModuleTest.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/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php index 0c0033a646..5a5782df08 100644 --- a/tests/app/Module/RelatedIndividualsReportModuleTest.php +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.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/Module/RelationshipsChartModuleTest.php b/tests/app/Module/RelationshipsChartModuleTest.php index 2d09a7961c..5e87f70e25 100644 --- a/tests/app/Module/RelationshipsChartModuleTest.php +++ b/tests/app/Module/RelationshipsChartModuleTest.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/Module/RelativesTabModuleTest.php b/tests/app/Module/RelativesTabModuleTest.php index 3ffbc54b4f..3c3375ecd8 100644 --- a/tests/app/Module/RelativesTabModuleTest.php +++ b/tests/app/Module/RelativesTabModuleTest.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/Module/ResearchTaskModuleTest.php b/tests/app/Module/ResearchTaskModuleTest.php index 534cbe4dd8..c2aa9aaca5 100644 --- a/tests/app/Module/ResearchTaskModuleTest.php +++ b/tests/app/Module/ResearchTaskModuleTest.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/Module/ReviewChangesModuleTest.php b/tests/app/Module/ReviewChangesModuleTest.php index 62a610a8f4..0b7ebe0813 100644 --- a/tests/app/Module/ReviewChangesModuleTest.php +++ b/tests/app/Module/ReviewChangesModuleTest.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/Module/SiteMapModuleTest.php b/tests/app/Module/SiteMapModuleTest.php index 445b53adec..f144913023 100644 --- a/tests/app/Module/SiteMapModuleTest.php +++ b/tests/app/Module/SiteMapModuleTest.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/Module/SlideShowModuleTest.php b/tests/app/Module/SlideShowModuleTest.php index 27c2eeb857..c9824da3a7 100644 --- a/tests/app/Module/SlideShowModuleTest.php +++ b/tests/app/Module/SlideShowModuleTest.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/Module/SourcesTabModuleTest.php b/tests/app/Module/SourcesTabModuleTest.php index 1287fd3221..43580c1513 100644 --- a/tests/app/Module/SourcesTabModuleTest.php +++ b/tests/app/Module/SourcesTabModuleTest.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/Module/StatisticsChartModuleTest.php b/tests/app/Module/StatisticsChartModuleTest.php index d921b6b0c6..544a7946ca 100644 --- a/tests/app/Module/StatisticsChartModuleTest.php +++ b/tests/app/Module/StatisticsChartModuleTest.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/Module/StoriesModuleTest.php b/tests/app/Module/StoriesModuleTest.php index 699931ad1e..79be537007 100644 --- a/tests/app/Module/StoriesModuleTest.php +++ b/tests/app/Module/StoriesModuleTest.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/Module/ThemeSelectModuleTest.php b/tests/app/Module/ThemeSelectModuleTest.php index 3eb685f303..7ec03ce90f 100644 --- a/tests/app/Module/ThemeSelectModuleTest.php +++ b/tests/app/Module/ThemeSelectModuleTest.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/Module/TimelineChartModuleTest.php b/tests/app/Module/TimelineChartModuleTest.php index 1f3191d382..8f6524536f 100644 --- a/tests/app/Module/TimelineChartModuleTest.php +++ b/tests/app/Module/TimelineChartModuleTest.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/Module/TopGivenNamesModuleTest.php b/tests/app/Module/TopGivenNamesModuleTest.php index fa028ffcf0..f12db4c7ca 100644 --- a/tests/app/Module/TopGivenNamesModuleTest.php +++ b/tests/app/Module/TopGivenNamesModuleTest.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/Module/TopPageViewsModuleTest.php b/tests/app/Module/TopPageViewsModuleTest.php index dbbc51a391..fd5b8de271 100644 --- a/tests/app/Module/TopPageViewsModuleTest.php +++ b/tests/app/Module/TopPageViewsModuleTest.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/Module/TopSurnamesModuleTest.php b/tests/app/Module/TopSurnamesModuleTest.php index 8977ca7106..248b230bd9 100644 --- a/tests/app/Module/TopSurnamesModuleTest.php +++ b/tests/app/Module/TopSurnamesModuleTest.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/Module/UpcomingAnniversariesModuleTest.php b/tests/app/Module/UpcomingAnniversariesModuleTest.php index 6efb427ee2..136abfb7d1 100644 --- a/tests/app/Module/UpcomingAnniversariesModuleTest.php +++ b/tests/app/Module/UpcomingAnniversariesModuleTest.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/Module/UserFavoritesModuleTest.php b/tests/app/Module/UserFavoritesModuleTest.php index bcb790bbc0..66b3844160 100644 --- a/tests/app/Module/UserFavoritesModuleTest.php +++ b/tests/app/Module/UserFavoritesModuleTest.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/Module/UserJournalModuleTest.php b/tests/app/Module/UserJournalModuleTest.php index 9137d3a509..bbbfab41da 100644 --- a/tests/app/Module/UserJournalModuleTest.php +++ b/tests/app/Module/UserJournalModuleTest.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/Module/UserMessagesModuleTest.php b/tests/app/Module/UserMessagesModuleTest.php index a34cdd31a2..4ec750fea2 100644 --- a/tests/app/Module/UserMessagesModuleTest.php +++ b/tests/app/Module/UserMessagesModuleTest.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/Module/UserWelcomeModuleTest.php b/tests/app/Module/UserWelcomeModuleTest.php index 76cf413abe..a236788ec8 100644 --- a/tests/app/Module/UserWelcomeModuleTest.php +++ b/tests/app/Module/UserWelcomeModuleTest.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/Module/WelcomeBlockModuleTest.php b/tests/app/Module/WelcomeBlockModuleTest.php index cbc9c2274a..5180cb9085 100644 --- a/tests/app/Module/WelcomeBlockModuleTest.php +++ b/tests/app/Module/WelcomeBlockModuleTest.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/Module/YahrzeitModuleTest.php b/tests/app/Module/YahrzeitModuleTest.php index ecf84c525f..11dd5bc441 100644 --- a/tests/app/Module/YahrzeitModuleTest.php +++ b/tests/app/Module/YahrzeitModuleTest.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/ModuleTest.php b/tests/app/ModuleTest.php index aaddd6c74a..a6abfbca77 100644 --- a/tests/app/ModuleTest.php +++ b/tests/app/ModuleTest.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/NoteTest.php b/tests/app/NoteTest.php index 750863be5d..d31574c5a0 100644 --- a/tests/app/NoteTest.php +++ b/tests/app/NoteTest.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/PlaceTest.php b/tests/app/PlaceTest.php index e91be76a8b..da53b85c7c 100644 --- a/tests/app/PlaceTest.php +++ b/tests/app/PlaceTest.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/Query/QueryMediaTest.php b/tests/app/Query/QueryMediaTest.php index 55b27fa7fe..c1c4c01472 100644 --- a/tests/app/Query/QueryMediaTest.php +++ b/tests/app/Query/QueryMediaTest.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/Query/QueryNameTest.php b/tests/app/Query/QueryNameTest.php index c8e7d85bca..4a2fd09d54 100644 --- a/tests/app/Query/QueryNameTest.php +++ b/tests/app/Query/QueryNameTest.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/Report/ReportBaseTest.php b/tests/app/Report/ReportBaseTest.php index c71431bde1..ae1cd6584a 100644 --- a/tests/app/Report/ReportBaseTest.php +++ b/tests/app/Report/ReportBaseTest.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/Report/ReportHTMLTest.php b/tests/app/Report/ReportHTMLTest.php index 6f794ed290..37500a9185 100644 --- a/tests/app/Report/ReportHTMLTest.php +++ b/tests/app/Report/ReportHTMLTest.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/Report/ReportPDFTest.php b/tests/app/Report/ReportPDFTest.php index 11be37a13f..3ea89c528a 100644 --- a/tests/app/Report/ReportPDFTest.php +++ b/tests/app/Report/ReportPDFTest.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/RepositoryTest.php b/tests/app/RepositoryTest.php index a2129e7570..165af8e4af 100644 --- a/tests/app/RepositoryTest.php +++ b/tests/app/RepositoryTest.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/SiteTest.php b/tests/app/SiteTest.php index 597b17efb1..2abf60af96 100644 --- a/tests/app/SiteTest.php +++ b/tests/app/SiteTest.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/SoundexTest.php b/tests/app/SoundexTest.php index 03638e414f..899031b3f2 100644 --- a/tests/app/SoundexTest.php +++ b/tests/app/SoundexTest.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/SourceTest.php b/tests/app/SourceTest.php index feeeba1ddc..ff38873d6c 100644 --- a/tests/app/SourceTest.php +++ b/tests/app/SourceTest.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/StatementTest.php b/tests/app/StatementTest.php index 95cfa7ace8..44ebfab0e5 100644 --- a/tests/app/StatementTest.php +++ b/tests/app/StatementTest.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/StatsTest.php b/tests/app/StatsTest.php index 1613eb466f..819aa76725 100644 --- a/tests/app/StatsTest.php +++ b/tests/app/StatsTest.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/SurnameTradition/DefaultSurnameTraditionTest.php b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php index 2d70a02d05..7d74e7b39a 100644 --- a/tests/app/SurnameTradition/DefaultSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/DefaultSurnameTraditionTest.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/SurnameTradition/IcelandicSurnameTraditionTest.php b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php index fd7c2d9056..29320f4281 100644 --- a/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.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/SurnameTradition/LithuanianSurnameTraditionTest.php b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php index 1635c3dbdb..0757d4eb06 100644 --- a/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/LithuanianSurnameTraditionTest.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/SurnameTradition/MatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php index 5ce3189dc6..04760aebb9 100644 --- a/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/MatrilinealSurnameTraditionTest.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/SurnameTradition/PaternalSurnameTraditionTest.php b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php index 300d971f83..3fb7eee31a 100644 --- a/tests/app/SurnameTradition/PaternalSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PaternalSurnameTraditionTest.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/SurnameTradition/PatrilinealSurnameTraditionTest.php b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php index 63aa842ba5..218f5cec60 100644 --- a/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PatrilinealSurnameTraditionTest.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/SurnameTradition/PolishSurnameTraditionTest.php b/tests/app/SurnameTradition/PolishSurnameTraditionTest.php index 204212d382..c53175989d 100644 --- a/tests/app/SurnameTradition/PolishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PolishSurnameTraditionTest.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/SurnameTradition/PortugueseSurnameTraditionTest.php b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php index f5bfea5f91..ca4bb1ba1f 100644 --- a/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/PortugueseSurnameTraditionTest.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/SurnameTradition/SpanishSurnameTraditionTest.php b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php index 1a83a9d222..a60875a82f 100644 --- a/tests/app/SurnameTradition/SpanishSurnameTraditionTest.php +++ b/tests/app/SurnameTradition/SpanishSurnameTraditionTest.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/SurnameTraditionTest.php b/tests/app/SurnameTraditionTest.php index 9664ab09a4..4e6a6cedee 100644 --- a/tests/app/SurnameTraditionTest.php +++ b/tests/app/SurnameTraditionTest.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/TreeTest.php b/tests/app/TreeTest.php index f292cb4e87..6b0d833845 100644 --- a/tests/app/TreeTest.php +++ b/tests/app/TreeTest.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/UserTest.php b/tests/app/UserTest.php index 3b214f6635..d64156b102 100644 --- a/tests/app/UserTest.php +++ b/tests/app/UserTest.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 |
