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 CensusOfScotland1841 26db7d25eeSGreg Roach */ 273cfcc809SGreg Roachclass CensusOfScotland1841Test extends TestCase 28c1010edaSGreg Roach{ 29db7d25eeSGreg Roach /** 30db7d25eeSGreg Roach * Test the census place and date 31ef21b467SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35db7d25eeSGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfScotland1841(); 39db7d25eeSGreg Roach 40db7d25eeSGreg Roach $this->assertSame('Scotland', $census->censusPlace()); 412cc41105SGreg Roach $this->assertSame('06 JUN 1841', $census->censusDate()); 42db7d25eeSGreg Roach } 43db7d25eeSGreg Roach 44db7d25eeSGreg Roach /** 45ef21b467SGreg Roach * Test the census columns 46ef21b467SGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 51db7d25eeSGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfScotland1841(); 55db7d25eeSGreg Roach $columns = $census->columns(); 56db7d25eeSGreg Roach 57db7d25eeSGreg Roach $this->assertCount(6, $columns); 583cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 593cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeMale5Years::class, $columns[1]); 603cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeFemale5Years::class, $columns[2]); 613cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[3]); 623cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[4]); 633cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnBornForeignParts::class, $columns[5]); 64ef21b467SGreg Roach 65ef21b467SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 66ef21b467SGreg Roach $this->assertSame('AgeM', $columns[1]->abbreviation()); 67ef21b467SGreg Roach $this->assertSame('AgeF', $columns[2]->abbreviation()); 68ef21b467SGreg Roach $this->assertSame('Occupation', $columns[3]->abbreviation()); 69ef21b467SGreg Roach $this->assertSame('BiC', $columns[4]->abbreviation()); 70ef21b467SGreg Roach $this->assertSame('EIF', $columns[5]->abbreviation()); 71ef21b467SGreg Roach 72ef21b467SGreg Roach $this->assertSame('Name', $columns[0]->title()); 73ef21b467SGreg Roach $this->assertSame('Age (males)', $columns[1]->title()); 74ef21b467SGreg Roach $this->assertSame('Age (females)', $columns[2]->title()); 75ef21b467SGreg Roach $this->assertSame('Profession, trade, employment or of independent means', $columns[3]->title()); 76ef21b467SGreg Roach $this->assertSame('Born in same county', $columns[4]->title()); 77ef21b467SGreg Roach $this->assertSame('Born in England, Ireland or foreign parts', $columns[5]->title()); 78db7d25eeSGreg Roach } 79db7d25eeSGreg Roach} 80