1548ca0ddSGreg Roach<?php 23976b470SGreg Roach 3548ca0ddSGreg Roach/** 4548ca0ddSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6548ca0ddSGreg Roach * This program is free software: you can redistribute it and/or modify 7548ca0ddSGreg Roach * it under the terms of the GNU General Public License as published by 8548ca0ddSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9548ca0ddSGreg Roach * (at your option) any later version. 10548ca0ddSGreg Roach * This program is distributed in the hope that it will be useful, 11548ca0ddSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12548ca0ddSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13548ca0ddSGreg Roach * GNU General Public License for more details. 14548ca0ddSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16548ca0ddSGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20548ca0ddSGreg Roachnamespace Fisharebest\Webtrees\Census; 21548ca0ddSGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 243cfcc809SGreg Roach 25*202c018bSGreg Roach#[CoversClass(CensusOfDenmark1803::class)] 26*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 273cfcc809SGreg Roachclass CensusOfDenmark1803Test extends TestCase 28c1010edaSGreg Roach{ 29548ca0ddSGreg Roach /** 30548ca0ddSGreg Roach * Test the census place and date 31548ca0ddSGreg Roach */ 329b802b22SGreg Roach public function testPlaceAndDate(): void 33c1010edaSGreg Roach { 3474d6dc0eSGreg Roach $census = new CensusOfDenmark1803(); 35548ca0ddSGreg Roach 365e933c21SGreg Roach self::assertSame('Schleswig-Holstein, Deutschland', $census->censusPlace()); 375e933c21SGreg Roach self::assertSame('01 FEB 1803', $census->censusDate()); 38548ca0ddSGreg Roach } 39548ca0ddSGreg Roach 40548ca0ddSGreg Roach /** 41548ca0ddSGreg Roach * Test the census columns 42548ca0ddSGreg Roach */ 439b802b22SGreg Roach public function testColumns(): void 44c1010edaSGreg Roach { 4574d6dc0eSGreg Roach $census = new CensusOfDenmark1803(); 46548ca0ddSGreg Roach $columns = $census->columns(); 47548ca0ddSGreg Roach 485e933c21SGreg Roach self::assertCount(5, $columns); 495e933c21SGreg Roach self::assertInstanceOf(CensusColumnFullName::class, $columns[0]); 505e933c21SGreg Roach self::assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]); 515e933c21SGreg Roach self::assertInstanceOf(CensusColumnAge::class, $columns[2]); 525e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionDanish::class, $columns[3]); 535e933c21SGreg Roach self::assertInstanceOf(CensusColumnOccupation::class, $columns[4]); 54548ca0ddSGreg Roach 555e933c21SGreg Roach self::assertSame('Navn', $columns[0]->abbreviation()); 565e933c21SGreg Roach self::assertSame('Stilling i familien', $columns[1]->abbreviation()); 575e933c21SGreg Roach self::assertSame('Alder', $columns[2]->abbreviation()); 585e933c21SGreg Roach self::assertSame('Civilstand', $columns[3]->abbreviation()); 595e933c21SGreg Roach self::assertSame('Erhverv', $columns[4]->abbreviation()); 60548ca0ddSGreg Roach 615e933c21SGreg Roach self::assertSame('', $columns[0]->title()); 625e933c21SGreg Roach self::assertSame('', $columns[1]->title()); 635e933c21SGreg Roach self::assertSame('', $columns[2]->title()); 645e933c21SGreg Roach self::assertSame('', $columns[3]->title()); 655e933c21SGreg Roach self::assertSame('', $columns[4]->title()); 66548ca0ddSGreg Roach } 67548ca0ddSGreg Roach} 68