1789ec362SGreg Roach<?php 23976b470SGreg Roach 3789ec362SGreg Roach/** 4789ec362SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6789ec362SGreg Roach * This program is free software: you can redistribute it and/or modify 7789ec362SGreg Roach * it under the terms of the GNU General Public License as published by 8789ec362SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9789ec362SGreg Roach * (at your option) any later version. 10789ec362SGreg Roach * This program is distributed in the hope that it will be useful, 11789ec362SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12789ec362SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13789ec362SGreg Roach * GNU General Public License for more details. 14789ec362SGreg 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/>. 16789ec362SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20789ec362SGreg Roachnamespace Fisharebest\Webtrees\Census; 21789ec362SGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 243cfcc809SGreg Roach 25*202c018bSGreg Roach#[CoversClass(CensusOfFrance1831::class)] 26*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 273cfcc809SGreg Roachclass CensusOfFrance1831Test extends TestCase 28c1010edaSGreg Roach{ 29789ec362SGreg Roach /** 30789ec362SGreg Roach * Test the census place and date 31789ec362SGreg Roach */ 329b802b22SGreg Roach public function testPlaceAndDate(): void 33c1010edaSGreg Roach { 3474d6dc0eSGreg Roach $census = new CensusOfFrance1831(); 35789ec362SGreg Roach 365e933c21SGreg Roach self::assertSame('France', $census->censusPlace()); 375e933c21SGreg Roach self::assertSame('20 JAN 1831', $census->censusDate()); 38789ec362SGreg Roach } 39789ec362SGreg Roach 40789ec362SGreg Roach /** 41789ec362SGreg Roach * Test the census columns 42789ec362SGreg Roach */ 439b802b22SGreg Roach public function testColumns(): void 44c1010edaSGreg Roach { 4574d6dc0eSGreg Roach $census = new CensusOfFrance1831(); 46789ec362SGreg Roach $columns = $census->columns(); 47789ec362SGreg Roach 485e933c21SGreg Roach self::assertCount(10, $columns); 495e933c21SGreg Roach self::assertInstanceOf(CensusColumnSurname::class, $columns[0]); 505e933c21SGreg Roach self::assertInstanceOf(CensusColumnGivenNames::class, $columns[1]); 515e933c21SGreg Roach self::assertInstanceOf(CensusColumnOccupation::class, $columns[2]); 525e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchGarcon::class, $columns[3]); 535e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchHomme::class, $columns[4]); 545e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchVeuf::class, $columns[5]); 555e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchFille::class, $columns[6]); 565e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchFemme::class, $columns[7]); 575e933c21SGreg Roach self::assertInstanceOf(CensusColumnConditionFrenchVeuve::class, $columns[8]); 585e933c21SGreg Roach self::assertInstanceOf(CensusColumnAge::class, $columns[9]); 59789ec362SGreg Roach 605e933c21SGreg Roach self::assertSame('Noms', $columns[0]->abbreviation()); 615e933c21SGreg Roach self::assertSame('Prénoms', $columns[1]->abbreviation()); 625e933c21SGreg Roach self::assertSame('Titres', $columns[2]->abbreviation()); 635e933c21SGreg Roach self::assertSame('Garçons', $columns[3]->abbreviation()); 645e933c21SGreg Roach self::assertSame('Hommes', $columns[4]->abbreviation()); 655e933c21SGreg Roach self::assertSame('Veufs', $columns[5]->abbreviation()); 665e933c21SGreg Roach self::assertSame('Filles', $columns[6]->abbreviation()); 675e933c21SGreg Roach self::assertSame('Femmes', $columns[7]->abbreviation()); 685e933c21SGreg Roach self::assertSame('Veuves', $columns[8]->abbreviation()); 695e933c21SGreg Roach self::assertSame('Âge', $columns[9]->abbreviation()); 70789ec362SGreg Roach 715e933c21SGreg Roach self::assertSame('Noms de famille', $columns[0]->title()); 725e933c21SGreg Roach self::assertSame('', $columns[1]->title()); 735e933c21SGreg Roach self::assertSame('Titres, qualifications, état ou profession et fonctions', $columns[2]->title()); 745e933c21SGreg Roach self::assertSame('', $columns[3]->title()); 755e933c21SGreg Roach self::assertSame('Hommes mariés', $columns[4]->title()); 765e933c21SGreg Roach self::assertSame('', $columns[5]->title()); 775e933c21SGreg Roach self::assertSame('', $columns[6]->title()); 785e933c21SGreg Roach self::assertSame('Femmes mariées', $columns[7]->title()); 795e933c21SGreg Roach self::assertSame('', $columns[8]->title()); 805e933c21SGreg Roach self::assertSame('', $columns[9]->title()); 81789ec362SGreg Roach } 82789ec362SGreg Roach} 83