1c2a8c8bfSGreg Roach<?php 23976b470SGreg Roach 3c2a8c8bfSGreg Roach/** 4c2a8c8bfSGreg Roach * webtrees: online genealogy 5*89f7189bSGreg Roach * Copyright (C) 2021 webtrees development team 6c2a8c8bfSGreg Roach * This program is free software: you can redistribute it and/or modify 7c2a8c8bfSGreg Roach * it under the terms of the GNU General Public License as published by 8c2a8c8bfSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9c2a8c8bfSGreg Roach * (at your option) any later version. 10c2a8c8bfSGreg Roach * This program is distributed in the hope that it will be useful, 11c2a8c8bfSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12c2a8c8bfSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13c2a8c8bfSGreg Roach * GNU General Public License for more details. 14c2a8c8bfSGreg Roach * You should have received a copy of the GNU General Public License 15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16c2a8c8bfSGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20c2a8c8bfSGreg Roachnamespace Fisharebest\Webtrees\Census; 21c2a8c8bfSGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 24c2a8c8bfSGreg Roach/** 25c2a8c8bfSGreg Roach * Test harness for the class CensusOfCzechRepublic1921 26c2a8c8bfSGreg Roach */ 273cfcc809SGreg Roachclass CensusOfCzechRepublic1921Test extends TestCase 28c1010edaSGreg Roach{ 29c2a8c8bfSGreg Roach /** 30c2a8c8bfSGreg Roach * Test the census place and date 31c2a8c8bfSGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35c2a8c8bfSGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfCzechRepublic1921(); 39c2a8c8bfSGreg Roach 405e933c21SGreg Roach self::assertSame('Česko', $census->censusPlace()); 415e933c21SGreg Roach self::assertSame('15 FEB 1921', $census->censusDate()); 42c2a8c8bfSGreg Roach } 43c2a8c8bfSGreg Roach 44c2a8c8bfSGreg Roach /** 45c2a8c8bfSGreg Roach * Test the census columns 46c2a8c8bfSGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 51c2a8c8bfSGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfCzechRepublic1921(); 55c2a8c8bfSGreg Roach $columns = $census->columns(); 56c2a8c8bfSGreg Roach 575e933c21SGreg Roach self::assertCount(14, $columns); 585e933c21SGreg Roach self::assertInstanceOf(CensusColumnFullName::class, $columns[0]); 595e933c21SGreg Roach self::assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]); 605e933c21SGreg Roach self::assertInstanceOf(CensusColumnSexMZ::class, $columns[2]); 615e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[3]); 625e933c21SGreg Roach self::assertInstanceOf(CensusColumnBirthDaySlashMonthYear::class, $columns[4]); 635e933c21SGreg Roach self::assertInstanceOf(CensusColumnBirthPlace::class, $columns[5]); 645e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[6]); 655e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[7]); 665e933c21SGreg Roach self::assertInstanceOf(CensusColumnReligion::class, $columns[8]); 675e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[9]); 685e933c21SGreg Roach self::assertInstanceOf(CensusColumnOccupation::class, $columns[10]); 695e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[11]); 705e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[12]); 715e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[13]); 72c2a8c8bfSGreg Roach 735e933c21SGreg Roach self::assertSame('Jméno', $columns[0]->abbreviation()); 745e933c21SGreg Roach self::assertSame('Vztah', $columns[1]->abbreviation()); 755e933c21SGreg Roach self::assertSame('Pohlaví', $columns[2]->abbreviation()); 765e933c21SGreg Roach self::assertSame('Stav', $columns[3]->abbreviation()); 775e933c21SGreg Roach self::assertSame('Narození', $columns[4]->abbreviation()); 785e933c21SGreg Roach self::assertSame('Místo', $columns[5]->abbreviation()); 795e933c21SGreg Roach self::assertSame('Přísluší', $columns[6]->abbreviation()); 805e933c21SGreg Roach self::assertSame('Národnost', $columns[7]->abbreviation()); 815e933c21SGreg Roach self::assertSame('Vyznání', $columns[8]->abbreviation()); 825e933c21SGreg Roach self::assertSame('Gramotnost', $columns[9]->abbreviation()); 835e933c21SGreg Roach self::assertSame('Povolání', $columns[10]->abbreviation()); 845e933c21SGreg Roach self::assertSame('Postavení', $columns[11]->abbreviation()); 855e933c21SGreg Roach self::assertSame('Podnik', $columns[12]->abbreviation()); 865e933c21SGreg Roach self::assertSame('', $columns[13]->abbreviation()); 87c2a8c8bfSGreg Roach 885e933c21SGreg Roach self::assertSame('', $columns[0]->title()); 895e933c21SGreg Roach self::assertSame('', $columns[1]->title()); 905e933c21SGreg Roach self::assertSame('', $columns[2]->title()); 915e933c21SGreg Roach self::assertSame('Rodinný stav', $columns[3]->title()); 925e933c21SGreg Roach self::assertSame('Datum narození', $columns[4]->title()); 935e933c21SGreg Roach self::assertSame('Místo narození', $columns[5]->title()); 945e933c21SGreg Roach self::assertSame('Domovské právo', $columns[6]->title()); 955e933c21SGreg Roach self::assertSame('Mateřský jazyk', $columns[7]->title()); 965e933c21SGreg Roach self::assertSame('', $columns[8]->title()); 975e933c21SGreg Roach self::assertSame('Znalost čtení a psaní', $columns[9]->title()); 985e933c21SGreg Roach self::assertSame('', $columns[10]->title()); 995e933c21SGreg Roach self::assertSame('Postavení v zaměstnání', $columns[11]->title()); 1005e933c21SGreg Roach self::assertSame('', $columns[12]->title()); 1015e933c21SGreg Roach self::assertSame('', $columns[13]->title()); 102c2a8c8bfSGreg Roach } 103c2a8c8bfSGreg Roach} 104