1101af0b4SGreg Roach<?php 23976b470SGreg Roach 3101af0b4SGreg Roach/** 4101af0b4SGreg Roach * webtrees: online genealogy 5*5e933c21SGreg Roach * Copyright (C) 2020 webtrees development team 6101af0b4SGreg Roach * This program is free software: you can redistribute it and/or modify 7101af0b4SGreg Roach * it under the terms of the GNU General Public License as published by 8101af0b4SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9101af0b4SGreg Roach * (at your option) any later version. 10101af0b4SGreg Roach * This program is distributed in the hope that it will be useful, 11101af0b4SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12101af0b4SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13101af0b4SGreg Roach * GNU General Public License for more details. 14101af0b4SGreg Roach * You should have received a copy of the GNU General Public License 15101af0b4SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16101af0b4SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20101af0b4SGreg Roachnamespace Fisharebest\Webtrees\Census; 21101af0b4SGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 24101af0b4SGreg Roach/** 25101af0b4SGreg Roach * Test harness for the class CensusOfDenmark1885 26101af0b4SGreg Roach */ 273cfcc809SGreg Roachclass CensusOfDenmark1885Test extends TestCase 28c1010edaSGreg Roach{ 29101af0b4SGreg Roach /** 30101af0b4SGreg Roach * Test the census place and date 31101af0b4SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1885 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35101af0b4SGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfDenmark1885(); 39101af0b4SGreg Roach 40*5e933c21SGreg Roach self::assertSame('København, Danmark', $census->censusPlace()); 41*5e933c21SGreg Roach self::assertSame('01 FEB 1885', $census->censusDate()); 42101af0b4SGreg Roach } 43101af0b4SGreg Roach 44101af0b4SGreg Roach /** 45101af0b4SGreg Roach * Test the census columns 46101af0b4SGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1885 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 51101af0b4SGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfDenmark1885(); 55101af0b4SGreg Roach $columns = $census->columns(); 56101af0b4SGreg Roach 57*5e933c21SGreg Roach self::assertCount(13, $columns); 58*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnFullName::class, $columns[0]); 59*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnSexMK::class, $columns[1]); 60*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnAge::class, $columns[2]); 61*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionDanish::class, $columns[3]); 62*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnReligion::class, $columns[4]); 63*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnOccupation::class, $columns[5]); 64*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnRelationToHead::class, $columns[6]); 65*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[7]); 66*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[8]); 67*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[9]); 68*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[10]); 69*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[11]); 70*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[12]); 71101af0b4SGreg Roach 72*5e933c21SGreg Roach self::assertSame('Navn', $columns[0]->abbreviation()); 73*5e933c21SGreg Roach self::assertSame('Køn', $columns[1]->abbreviation()); 74*5e933c21SGreg Roach self::assertSame('Alder', $columns[2]->abbreviation()); 75*5e933c21SGreg Roach self::assertSame('Civilstand', $columns[3]->abbreviation()); 76*5e933c21SGreg Roach self::assertSame('Religion', $columns[4]->abbreviation()); 77*5e933c21SGreg Roach self::assertSame('Erhverv', $columns[5]->abbreviation()); 78*5e933c21SGreg Roach self::assertSame('Stilling i familien', $columns[6]->abbreviation()); 79*5e933c21SGreg Roach self::assertSame('', $columns[7]->abbreviation()); 80*5e933c21SGreg Roach self::assertSame('', $columns[8]->abbreviation()); 81*5e933c21SGreg Roach self::assertSame('', $columns[9]->abbreviation()); 82*5e933c21SGreg Roach self::assertSame('', $columns[10]->abbreviation()); 83*5e933c21SGreg Roach self::assertSame('', $columns[11]->abbreviation()); 84*5e933c21SGreg Roach self::assertSame('', $columns[12]->abbreviation()); 85101af0b4SGreg Roach 86*5e933c21SGreg Roach self::assertSame('', $columns[0]->title()); 87*5e933c21SGreg Roach self::assertSame('', $columns[1]->title()); 88*5e933c21SGreg Roach self::assertSame('', $columns[2]->title()); 89*5e933c21SGreg Roach self::assertSame('', $columns[3]->title()); 90*5e933c21SGreg Roach self::assertSame('', $columns[4]->title()); 91*5e933c21SGreg Roach self::assertSame('', $columns[5]->title()); 92*5e933c21SGreg Roach self::assertSame('', $columns[6]->title()); 93*5e933c21SGreg Roach self::assertSame('', $columns[7]->title()); 94*5e933c21SGreg Roach self::assertSame('', $columns[8]->title()); 95*5e933c21SGreg Roach self::assertSame('', $columns[9]->title()); 96*5e933c21SGreg Roach self::assertSame('', $columns[10]->title()); 97*5e933c21SGreg Roach self::assertSame('', $columns[11]->title()); 98*5e933c21SGreg Roach self::assertSame('', $columns[12]->title()); 99101af0b4SGreg Roach } 100101af0b4SGreg Roach} 101