1548ca0ddSGreg Roach<?php 23976b470SGreg Roach 3548ca0ddSGreg Roach/** 4548ca0ddSGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 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 15548ca0ddSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16548ca0ddSGreg Roach */ 17e7f56f2aSGreg Roachdeclare(strict_types=1); 18e7f56f2aSGreg Roach 19548ca0ddSGreg Roachnamespace Fisharebest\Webtrees\Census; 20548ca0ddSGreg Roach 21*3cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 22*3cfcc809SGreg Roach 23548ca0ddSGreg Roach/** 24548ca0ddSGreg Roach * Test harness for the class CensusOfDenmark1803 25548ca0ddSGreg Roach */ 26*3cfcc809SGreg Roachclass CensusOfDenmark1803Test extends TestCase 27c1010edaSGreg Roach{ 28548ca0ddSGreg Roach /** 29548ca0ddSGreg Roach * Test the census place and date 30548ca0ddSGreg Roach * 3115d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803 3252348eb8SGreg Roach * 3352348eb8SGreg Roach * @return void 34548ca0ddSGreg Roach */ 359b802b22SGreg Roach public function testPlaceAndDate(): void 36c1010edaSGreg Roach { 3774d6dc0eSGreg Roach $census = new CensusOfDenmark1803(); 38548ca0ddSGreg Roach 39548ca0ddSGreg Roach $this->assertSame('Schleswig-Holstein, Deutschland', $census->censusPlace()); 40548ca0ddSGreg Roach $this->assertSame('01 FEB 1803', $census->censusDate()); 41548ca0ddSGreg Roach } 42548ca0ddSGreg Roach 43548ca0ddSGreg Roach /** 44548ca0ddSGreg Roach * Test the census columns 45548ca0ddSGreg Roach * 4615d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4852348eb8SGreg Roach * 4952348eb8SGreg Roach * @return void 50548ca0ddSGreg Roach */ 519b802b22SGreg Roach public function testColumns(): void 52c1010edaSGreg Roach { 5374d6dc0eSGreg Roach $census = new CensusOfDenmark1803(); 54548ca0ddSGreg Roach $columns = $census->columns(); 55548ca0ddSGreg Roach 56548ca0ddSGreg Roach $this->assertCount(5, $columns); 57*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 58*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]); 59*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnAge::class, $columns[2]); 60*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnConditionDanish::class, $columns[3]); 61*3cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]); 62548ca0ddSGreg Roach 634c219c47SGreg Roach $this->assertSame('Navn', $columns[0]->abbreviation()); 644c219c47SGreg Roach $this->assertSame('Stilling i familien', $columns[1]->abbreviation()); 654c219c47SGreg Roach $this->assertSame('Alder', $columns[2]->abbreviation()); 664c219c47SGreg Roach $this->assertSame('Civilstand', $columns[3]->abbreviation()); 674c219c47SGreg Roach $this->assertSame('Erhverv', $columns[4]->abbreviation()); 68548ca0ddSGreg Roach 694c219c47SGreg Roach $this->assertSame('', $columns[0]->title()); 704c219c47SGreg Roach $this->assertSame('', $columns[1]->title()); 714c219c47SGreg Roach $this->assertSame('', $columns[2]->title()); 724c219c47SGreg Roach $this->assertSame('', $columns[3]->title()); 734c219c47SGreg Roach $this->assertSame('', $columns[4]->title()); 74548ca0ddSGreg Roach } 75548ca0ddSGreg Roach} 76