1ce92b752Smpwt<?php 23976b470SGreg Roach 3ce92b752Smpwt/** 4ce92b752Smpwt * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6ce92b752Smpwt * This program is free software: you can redistribute it and/or modify 7ce92b752Smpwt * it under the terms of the GNU General Public License as published by 8ce92b752Smpwt * the Free Software Foundation, either version 3 of the License, or 9ce92b752Smpwt * (at your option) any later version. 10ce92b752Smpwt * This program is distributed in the hope that it will be useful, 11ce92b752Smpwt * but WITHOUT ANY WARRANTY; without even the implied warranty of 12ce92b752Smpwt * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13ce92b752Smpwt * GNU General Public License for more details. 14ce92b752Smpwt * 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/>. 16ce92b752Smpwt */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20ce92b752Smpwtnamespace Fisharebest\Webtrees\Census; 21ce92b752Smpwt 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 243cfcc809SGreg Roach 25*202c018bSGreg Roach 26*202c018bSGreg Roach#[CoversClass(CensusOfDeutschland1819::class)] 27*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 283cfcc809SGreg Roachclass CensusOfDeutschland1819Test extends TestCase 29c1010edaSGreg Roach{ 30ce92b752Smpwt /** 31ce92b752Smpwt * Test the census place and date 32ce92b752Smpwt */ 339b802b22SGreg Roach public function testPlaceAndDate(): void 34c1010edaSGreg Roach { 3574d6dc0eSGreg Roach $census = new CensusOfDeutschland1819(); 36ce92b752Smpwt 375e933c21SGreg Roach self::assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace()); 385e933c21SGreg Roach self::assertSame('AUG 1819', $census->censusDate()); 39ce92b752Smpwt } 40ce92b752Smpwt 41ce92b752Smpwt /** 42ce92b752Smpwt * Test the census columns 43ce92b752Smpwt */ 449b802b22SGreg Roach public function testColumns(): void 45c1010edaSGreg Roach { 4674d6dc0eSGreg Roach $census = new CensusOfDeutschland1819(); 47ce92b752Smpwt $columns = $census->columns(); 48ce92b752Smpwt 495e933c21SGreg Roach self::assertCount(13, $columns); 505e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[0]); 515e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[1]); 525e933c21SGreg Roach self::assertInstanceOf(CensusColumnFullName::class, $columns[2]); 535e933c21SGreg Roach self::assertInstanceOf(CensusColumnBirthYear::class, $columns[3]); 545e933c21SGreg Roach self::assertInstanceOf(CensusColumnBirthPlace::class, $columns[4]); 555e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[5]); 565e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[6]); 575e933c21SGreg Roach self::assertInstanceOf(CensusColumnOccupation::class, $columns[7]); 585e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[8]); 595e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[9]); 605e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[10]); 615e933c21SGreg Roach self::assertInstanceOf(CensusColumnReligion::class, $columns[11]); 625e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[12]); 63ce92b752Smpwt 645e933c21SGreg Roach self::assertSame('Nr.', $columns[0]->abbreviation()); 655e933c21SGreg Roach self::assertSame('Geschlecht', $columns[1]->abbreviation()); 665e933c21SGreg Roach self::assertSame('Name', $columns[2]->abbreviation()); 675e933c21SGreg Roach self::assertSame('Geburtsdatum', $columns[3]->abbreviation()); 685e933c21SGreg Roach self::assertSame('Geburtsort', $columns[4]->abbreviation()); 695e933c21SGreg Roach self::assertSame('Kirchspiel', $columns[5]->abbreviation()); 705e933c21SGreg Roach self::assertSame('', $columns[6]->abbreviation()); 715e933c21SGreg Roach self::assertSame('Stand/Beruf', $columns[7]->abbreviation()); 725e933c21SGreg Roach self::assertSame('Besitz', $columns[8]->abbreviation()); 735e933c21SGreg Roach self::assertSame('hier seit', $columns[9]->abbreviation()); 745e933c21SGreg Roach self::assertSame('Familienstand', $columns[10]->abbreviation()); 755e933c21SGreg Roach self::assertSame('Religion', $columns[11]->abbreviation()); 765e933c21SGreg Roach self::assertSame('Bemerkungen', $columns[12]->abbreviation()); 77ce92b752Smpwt 785e933c21SGreg Roach self::assertSame('Laufende Num̅er.', $columns[0]->title()); 795e933c21SGreg Roach self::assertSame('Ob männlichen oder weiblichen Geschlechts.', $columns[1]->title()); 805e933c21SGreg Roach self::assertSame('Vor- und Zuname.', $columns[2]->title()); 815e933c21SGreg Roach self::assertSame('Jahr und Tag der Geburt.', $columns[3]->title()); 825e933c21SGreg Roach self::assertSame('Geburtsort.', $columns[4]->title()); 835e933c21SGreg Roach self::assertSame('Kirchspiel, wohin der Geburtsort gehört.', $columns[5]->title()); 845e933c21SGreg Roach self::assertSame('leere Spalte', $columns[6]->title()); 855e933c21SGreg Roach self::assertSame('Stand und Gewerbe.', $columns[7]->title()); 865e933c21SGreg Roach self::assertSame('Grundbesitz.', $columns[8]->title()); 875e933c21SGreg Roach self::assertSame('Wie lange er schon hier ist.', $columns[9]->title()); 885e933c21SGreg Roach self::assertSame('Ob ledig oder verheirathet.', $columns[10]->title()); 895e933c21SGreg Roach self::assertSame('Religion.', $columns[11]->title()); 905e933c21SGreg Roach self::assertSame('Allgemeine Bemerkungen.', $columns[12]->title()); 91ce92b752Smpwt } 92ce92b752Smpwt} 93