1db7d25eeSGreg Roach<?php 2db7d25eeSGreg Roach 3db7d25eeSGreg Roach/** 4db7d25eeSGreg Roach * webtrees: online genealogy 5db7d25eeSGreg Roach * Copyright (C) 2015 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 */ 17db7d25eeSGreg Roach 18db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 19db7d25eeSGreg Roach 20db7d25eeSGreg Roach/** 21db7d25eeSGreg Roach * Test harness for the class CensusOfEngland1911 22db7d25eeSGreg Roach */ 23db7d25eeSGreg Roachclass CensusOfEngland1911Test extends \PHPUnit_Framework_TestCase { 24db7d25eeSGreg Roach /** 25db7d25eeSGreg Roach * Test the census place and date 26ef21b467SGreg Roach * 27ef21b467SGreg Roach * @covers Fisharebest\Webtrees\Census\CensusOfEngland1911 28db7d25eeSGreg Roach */ 29db7d25eeSGreg Roach public function testPlaceAndDate() { 30db7d25eeSGreg Roach $census = new CensusOfEngland1911; 31db7d25eeSGreg Roach 32db7d25eeSGreg Roach $this->assertSame('England', $census->censusPlace()); 33db7d25eeSGreg Roach $this->assertSame('02 MAR 1911', $census->censusDate()); 34db7d25eeSGreg Roach } 35ef21b467SGreg Roach 36ef21b467SGreg Roach /** 37ef21b467SGreg Roach * Test the census columns 38ef21b467SGreg Roach * 39ef21b467SGreg Roach * @covers Fisharebest\Webtrees\Census\CensusOfEngland1911 40ef21b467SGreg Roach */ 41ef21b467SGreg Roach public function testColumns() { 42ef21b467SGreg Roach $census = new CensusOfEngland1911; 43ef21b467SGreg Roach $columns = $census->columns(); 44ef21b467SGreg Roach 45ef21b467SGreg Roach $this->assertCount(16, $columns); 46ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 47ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]); 48ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnAgeMale::class, $columns[2]); 49ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnAgeFemale::class, $columns[3]); 50ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnCondition::class, $columns[4]); 51ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnYearsMarried::class, $columns[5]); 52ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnChildrenBornAlive::class, $columns[6]); 53ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnChildrenLiving::class, $columns[7]); 54ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnChildrenDied::class, $columns[8]); 55ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[9]); 56ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[10]); 57ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[11]); 58ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[12]); 59ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[13]); 60ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnNationality::class, $columns[14]); 61ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[15]); 62*289506e3SGreg Roach 63*289506e3SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 64*289506e3SGreg Roach $this->assertSame('Relation', $columns[1]->abbreviation()); 65*289506e3SGreg Roach $this->assertSame('AgeM', $columns[2]->abbreviation()); 66*289506e3SGreg Roach $this->assertSame('AgeF', $columns[3]->abbreviation()); 67*289506e3SGreg Roach $this->assertSame('Condition', $columns[4]->abbreviation()); 68*289506e3SGreg Roach $this->assertSame('YrM', $columns[5]->abbreviation()); 69*289506e3SGreg Roach $this->assertSame('ChA', $columns[6]->abbreviation()); 70*289506e3SGreg Roach $this->assertSame('ChL', $columns[7]->abbreviation()); 71*289506e3SGreg Roach $this->assertSame('ChD', $columns[8]->abbreviation()); 72*289506e3SGreg Roach $this->assertSame('Occupation', $columns[9]->abbreviation()); 73*289506e3SGreg Roach $this->assertSame('Ind', $columns[10]->abbreviation()); 74*289506e3SGreg Roach $this->assertSame('Emp', $columns[11]->abbreviation()); 75*289506e3SGreg Roach $this->assertSame('Home', $columns[12]->abbreviation()); 76*289506e3SGreg Roach $this->assertSame('Birthplace', $columns[13]->abbreviation()); 77*289506e3SGreg Roach $this->assertSame('Nat', $columns[14]->abbreviation()); 78*289506e3SGreg Roach $this->assertSame('Infirm', $columns[15]->abbreviation()); 79*289506e3SGreg Roach 80*289506e3SGreg Roach $this->assertSame('Name and surname', $columns[0]->title()); 81*289506e3SGreg Roach $this->assertSame('Relation to head of household', $columns[1]->title()); 82*289506e3SGreg Roach $this->assertSame('Age (males)', $columns[2]->title()); 83*289506e3SGreg Roach $this->assertSame('Age (females)', $columns[3]->title()); 84*289506e3SGreg Roach $this->assertSame('Condition', $columns[4]->title()); 85*289506e3SGreg Roach $this->assertSame('Years married', $columns[5]->title()); 86*289506e3SGreg Roach $this->assertSame('Children born alive', $columns[6]->title()); 87*289506e3SGreg Roach $this->assertSame('Children who are still alive', $columns[7]->title()); 88*289506e3SGreg Roach $this->assertSame('Children who have died', $columns[8]->title()); 89*289506e3SGreg Roach $this->assertSame('Rank, profession or occupation', $columns[9]->title()); 90*289506e3SGreg Roach $this->assertSame('Industry', $columns[10]->title()); 91*289506e3SGreg Roach $this->assertSame('Employer, worker or own account', $columns[11]->title()); 92*289506e3SGreg Roach $this->assertSame('Working at home', $columns[12]->title()); 93*289506e3SGreg Roach $this->assertSame('Where born', $columns[13]->title()); 94*289506e3SGreg Roach $this->assertSame('Nationality', $columns[14]->title()); 95*289506e3SGreg Roach $this->assertSame('Infirmity', $columns[15]->title()); 96ef21b467SGreg Roach } 97db7d25eeSGreg Roach} 98