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 */ 17e7f56f2aSGreg Roachdeclare(strict_types=1); 18e7f56f2aSGreg Roach 19db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 20db7d25eeSGreg Roach 21*3cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 22*3cfcc809SGreg Roach 23db7d25eeSGreg Roach/** 24db7d25eeSGreg Roach * Test harness for the class CensusOfScotland1841 25db7d25eeSGreg Roach */ 26*3cfcc809SGreg Roachclass CensusOfScotland1841Test extends TestCase 27c1010edaSGreg Roach{ 28db7d25eeSGreg Roach /** 29db7d25eeSGreg Roach * Test the census place and date 30ef21b467SGreg Roach * 3115d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 3252348eb8SGreg Roach * 3352348eb8SGreg Roach * @return void 34db7d25eeSGreg Roach */ 359b802b22SGreg Roach public function testPlaceAndDate(): void 36c1010edaSGreg Roach { 3774d6dc0eSGreg Roach $census = new CensusOfScotland1841(); 38db7d25eeSGreg Roach 39db7d25eeSGreg Roach $this->assertSame('Scotland', $census->censusPlace()); 402cc41105SGreg Roach $this->assertSame('06 JUN 1841', $census->censusDate()); 41db7d25eeSGreg Roach } 42db7d25eeSGreg Roach 43db7d25eeSGreg Roach /** 44ef21b467SGreg Roach * Test the census columns 45ef21b467SGreg Roach * 4615d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland1841 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4852348eb8SGreg Roach * 4952348eb8SGreg Roach * @return void 50db7d25eeSGreg Roach */ 519b802b22SGreg Roach public function testColumns(): void 52c1010edaSGreg Roach { 5374d6dc0eSGreg Roach $census = new CensusOfScotland1841(); 54db7d25eeSGreg Roach $columns = $census->columns(); 55db7d25eeSGreg Roach 56db7d25eeSGreg Roach $this->assertCount(6, $columns); 57*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 58*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeMale5Years::class, $columns[1]); 59*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAgeFemale5Years::class, $columns[2]); 60*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[3]); 61*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[4]); 62*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnBornForeignParts::class, $columns[5]); 63ef21b467SGreg Roach 64ef21b467SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 65ef21b467SGreg Roach $this->assertSame('AgeM', $columns[1]->abbreviation()); 66ef21b467SGreg Roach $this->assertSame('AgeF', $columns[2]->abbreviation()); 67ef21b467SGreg Roach $this->assertSame('Occupation', $columns[3]->abbreviation()); 68ef21b467SGreg Roach $this->assertSame('BiC', $columns[4]->abbreviation()); 69ef21b467SGreg Roach $this->assertSame('EIF', $columns[5]->abbreviation()); 70ef21b467SGreg Roach 71ef21b467SGreg Roach $this->assertSame('Name', $columns[0]->title()); 72ef21b467SGreg Roach $this->assertSame('Age (males)', $columns[1]->title()); 73ef21b467SGreg Roach $this->assertSame('Age (females)', $columns[2]->title()); 74ef21b467SGreg Roach $this->assertSame('Profession, trade, employment or of independent means', $columns[3]->title()); 75ef21b467SGreg Roach $this->assertSame('Born in same county', $columns[4]->title()); 76ef21b467SGreg Roach $this->assertSame('Born in England, Ireland or foreign parts', $columns[5]->title()); 77db7d25eeSGreg Roach } 78db7d25eeSGreg Roach} 79