1db7d25eeSGreg Roach<?php 23976b470SGreg Roach 3db7d25eeSGreg Roach/** 4db7d25eeSGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 6db7d25eeSGreg Roach * This program is free software: you can redistribute it and/or modify 7db7d25eeSGreg Roach * it under the terms of the GNU General Public License as published by 8db7d25eeSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9db7d25eeSGreg Roach * (at your option) any later version. 10db7d25eeSGreg Roach * This program is distributed in the hope that it will be useful, 11db7d25eeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12db7d25eeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13db7d25eeSGreg Roach * GNU General Public License for more details. 14db7d25eeSGreg Roach * You should have received a copy of the GNU General Public License 15db7d25eeSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16db7d25eeSGreg Roach */ 17*fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 21db7d25eeSGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 24db7d25eeSGreg Roach/** 25db7d25eeSGreg Roach * Test harness for the class CensusOfEngland1871 26db7d25eeSGreg Roach */ 273cfcc809SGreg Roachclass CensusOfEngland1871Test extends TestCase 28c1010edaSGreg Roach{ 29db7d25eeSGreg Roach /** 30db7d25eeSGreg Roach * Test the census place and date 31ef21b467SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1871 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35db7d25eeSGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfEngland1871(); 39db7d25eeSGreg Roach 40db7d25eeSGreg Roach $this->assertSame('England', $census->censusPlace()); 41ffd11e90SGreg Roach $this->assertSame('02 APR 1871', $census->censusDate()); 42db7d25eeSGreg Roach } 43ef21b467SGreg Roach 44ef21b467SGreg Roach /** 45ef21b467SGreg Roach * Test the census columns 46ef21b467SGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfEngland1871 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 51ef21b467SGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfEngland1871(); 55ef21b467SGreg Roach $columns = $census->columns(); 56ef21b467SGreg Roach 57ef21b467SGreg Roach $this->assertCount(8, $columns); 583cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 593cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]); 603cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnConditionEnglish::class, $columns[2]); 613cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeMale::class, $columns[3]); 623cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeFemale::class, $columns[4]); 633cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[5]); 643cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[6]); 653cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[7]); 66289506e3SGreg Roach 67289506e3SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 68289506e3SGreg Roach $this->assertSame('Relation', $columns[1]->abbreviation()); 69289506e3SGreg Roach $this->assertSame('Condition', $columns[2]->abbreviation()); 70289506e3SGreg Roach $this->assertSame('AgeM', $columns[3]->abbreviation()); 71289506e3SGreg Roach $this->assertSame('AgeF', $columns[4]->abbreviation()); 72289506e3SGreg Roach $this->assertSame('Occupation', $columns[5]->abbreviation()); 73289506e3SGreg Roach $this->assertSame('Birthplace', $columns[6]->abbreviation()); 74289506e3SGreg Roach $this->assertSame('Infirm', $columns[7]->abbreviation()); 75289506e3SGreg Roach 76289506e3SGreg Roach $this->assertSame('Name and surname', $columns[0]->title()); 77289506e3SGreg Roach $this->assertSame('Relation to head of household', $columns[1]->title()); 78289506e3SGreg Roach $this->assertSame('Condition', $columns[2]->title()); 79289506e3SGreg Roach $this->assertSame('Age (males)', $columns[3]->title()); 80289506e3SGreg Roach $this->assertSame('Age (females)', $columns[4]->title()); 81289506e3SGreg Roach $this->assertSame('Rank, profession or occupation', $columns[5]->title()); 82289506e3SGreg Roach $this->assertSame('Where born', $columns[6]->title()); 83289506e3SGreg Roach $this->assertSame('Whether deaf-and-dumb, blind, imbecile, idiot or lunatic', $columns[7]->title()); 84ef21b467SGreg Roach } 85db7d25eeSGreg Roach} 86