1db7d25eeSGreg Roach<?php 23976b470SGreg Roach 3db7d25eeSGreg Roach/** 4db7d25eeSGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 6db7d25eeSGreg Roach * This program is free software: you can redistribute it and/or modify 7db7d25eeSGreg Roach * it under the terms of the GNU General Public License as published by 8db7d25eeSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9db7d25eeSGreg Roach * (at your option) any later version. 10db7d25eeSGreg Roach * This program is distributed in the hope that it will be useful, 11db7d25eeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12db7d25eeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13db7d25eeSGreg Roach * GNU General Public License for more details. 14db7d25eeSGreg Roach * You should have received a copy of the GNU General Public License 15db7d25eeSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16db7d25eeSGreg Roach */ 17*fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 21db7d25eeSGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 24db7d25eeSGreg Roach/** 25db7d25eeSGreg Roach * Test harness for the class CensusOfFrance1911 26db7d25eeSGreg Roach */ 273cfcc809SGreg Roachclass CensusOfFrance1911Test extends TestCase 28c1010edaSGreg Roach{ 29db7d25eeSGreg Roach /** 30db7d25eeSGreg Roach * Test the census place and date 31ef21b467SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1911 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35db7d25eeSGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfFrance1911(); 39db7d25eeSGreg Roach 40db7d25eeSGreg Roach $this->assertSame('France', $census->censusPlace()); 4173c569abSGreg Roach $this->assertSame('19 JAN 1911', $census->censusDate()); 42db7d25eeSGreg Roach } 4340150762SGreg Roach 4440150762SGreg Roach /** 4540150762SGreg Roach * Test the census columns 4640150762SGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1911 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 5140150762SGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfFrance1911(); 5540150762SGreg Roach $columns = $census->columns(); 5640150762SGreg Roach 57789ec362SGreg Roach $this->assertCount(8, $columns); 583cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnSurname::class, $columns[0]); 593cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnGivenNames::class, $columns[1]); 603cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnBirthYear::class, $columns[2]); 613cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[3]); 623cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnNationality::class, $columns[4]); 633cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[5]); 643cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[6]); 653cfcc809SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[7]); 6640150762SGreg Roach 6700225b98SGreg Roach $this->assertSame('Noms', $columns[0]->abbreviation()); 6800225b98SGreg Roach $this->assertSame('Prénoms', $columns[1]->abbreviation()); 6900225b98SGreg Roach $this->assertSame('Année', $columns[2]->abbreviation()); 7000225b98SGreg Roach $this->assertSame('Lieu', $columns[3]->abbreviation()); 7100225b98SGreg Roach $this->assertSame('Nationalité', $columns[4]->abbreviation()); 7200225b98SGreg Roach $this->assertSame('Situation', $columns[5]->abbreviation()); 7300225b98SGreg Roach $this->assertSame('Profession', $columns[6]->abbreviation()); 7400225b98SGreg Roach $this->assertSame('Empl', $columns[7]->abbreviation()); 7540150762SGreg Roach 7600225b98SGreg Roach $this->assertSame('Noms de famille', $columns[0]->title()); 7700225b98SGreg Roach $this->assertSame('', $columns[1]->title()); 7800225b98SGreg Roach $this->assertSame('Année de naissance', $columns[2]->title()); 7900225b98SGreg Roach $this->assertSame('Lieu de naissance', $columns[3]->title()); 8000225b98SGreg Roach $this->assertSame('', $columns[4]->title()); 8100225b98SGreg Roach $this->assertSame('Situation par rapport au chef de ménage', $columns[5]->title()); 8200225b98SGreg Roach $this->assertSame('', $columns[6]->title()); 8300225b98SGreg Roach $this->assertSame('', $columns[7]->title()); 8440150762SGreg Roach } 85db7d25eeSGreg Roach} 86