1ce92b752Smpwt<?php 2ce92b752Smpwt 3ce92b752Smpwt/** 4ce92b752Smpwt * webtrees: online genealogy 5*1062a142SGreg Roach * Copyright (C) 2018 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 15ce92b752Smpwt * along with this program. If not, see <http://www.gnu.org/licenses/>. 16ce92b752Smpwt */ 17ce92b752Smpwtnamespace Fisharebest\Webtrees\Census; 18ce92b752Smpwt 19ce92b752Smpwt/** 20ce92b752Smpwt * Test harness for the class CensusOfDeutschland1919 21ce92b752Smpwt */ 223e983931SGreg Roachclass CensusOfDeutschland1919Test extends \PHPUnit\Framework\TestCase { 23ce92b752Smpwt /** 24ce92b752Smpwt * Test the census place and date 25ce92b752Smpwt * 2615d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919 27ce92b752Smpwt */ 28ce92b752Smpwt public function testPlaceAndDate() { 29ce92b752Smpwt $census = new CensusOfDeutschland1919; 30ce92b752Smpwt 31ce92b752Smpwt $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace()); 32ce92b752Smpwt $this->assertSame('08 OCT 1919', $census->censusDate()); 33ce92b752Smpwt } 34ce92b752Smpwt 35ce92b752Smpwt /** 36ce92b752Smpwt * Test the census columns 37ce92b752Smpwt * 3815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1919 3915d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 40ce92b752Smpwt */ 41ce92b752Smpwt public function testColumns() { 42ce92b752Smpwt $census = new CensusOfDeutschland1919; 43ce92b752Smpwt $columns = $census->columns(); 44ce92b752Smpwt 45ce92b752Smpwt $this->assertCount(17, $columns); 46ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]); 47ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); 48ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSurname', $columns[2]); 49ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnRelationToHeadGerman', $columns[3]); 50ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]); 51ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]); 52ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]); 53ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthDay', $columns[7]); 54ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthMonth', $columns[8]); 55ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthYear', $columns[9]); 56ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[10]); 57ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[11]); 58ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]); 59ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[13]); 60ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[14]); 61ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[15]); 62ce92b752Smpwt $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[16]); 63ce92b752Smpwt 64ce92b752Smpwt $this->assertSame('Nummer', $columns[0]->abbreviation()); 65ce92b752Smpwt $this->assertSame('Vorname', $columns[1]->abbreviation()); 66ce92b752Smpwt $this->assertSame('Familienname', $columns[2]->abbreviation()); 67ce92b752Smpwt $this->assertSame('Stellung im Haushalt', $columns[3]->abbreviation()); 68ce92b752Smpwt $this->assertSame('männlich', $columns[4]->abbreviation()); 69ce92b752Smpwt $this->assertSame('weiblich', $columns[5]->abbreviation()); 70ce92b752Smpwt $this->assertSame('Familienstand', $columns[6]->abbreviation()); 71ce92b752Smpwt $this->assertSame('Geburts-Tag', $columns[7]->abbreviation()); 72ce92b752Smpwt $this->assertSame('Geburts-Monat', $columns[8]->abbreviation()); 73ce92b752Smpwt $this->assertSame('Geburts-Jahr', $columns[9]->abbreviation()); 74ce92b752Smpwt $this->assertSame('Geburtsort', $columns[10]->abbreviation()); 75ce92b752Smpwt $this->assertSame('Amt, Kreis, Bezirk', $columns[11]->abbreviation()); 76ce92b752Smpwt $this->assertSame('StA', $columns[12]->abbreviation()); 77ce92b752Smpwt $this->assertSame('Gemeinde Brotversorgung', $columns[13]->abbreviation()); 78ce92b752Smpwt $this->assertSame('Wohn-/ Aufenthaltsort', $columns[14]->abbreviation()); 79ce92b752Smpwt $this->assertSame('Dienstgrad', $columns[15]->abbreviation()); 80ce92b752Smpwt $this->assertSame('Kriegsgefangener', $columns[16]->abbreviation()); 81ce92b752Smpwt 82ce92b752Smpwt $this->assertSame('Laufende Nummer', $columns[0]->title()); 83ce92b752Smpwt $this->assertSame('Vorname', $columns[1]->title()); 84ce92b752Smpwt $this->assertSame('Familienname', $columns[2]->title()); 85ce92b752Smpwt $this->assertSame('Stellung im Haushalt', $columns[3]->title()); 86ce92b752Smpwt $this->assertSame('Geschlecht männlich', $columns[4]->title()); 87ce92b752Smpwt $this->assertSame('Geschlecht weiblich', $columns[5]->title()); 88ce92b752Smpwt $this->assertSame('Familienstand', $columns[6]->title()); 89ce92b752Smpwt $this->assertSame('Geburts-Tag', $columns[7]->title()); 90ce92b752Smpwt $this->assertSame('Geburts-Monat', $columns[8]->title()); 91ce92b752Smpwt $this->assertSame('Geburts-Jahr', $columns[9]->title()); 92ce92b752Smpwt $this->assertSame('Name des Geburtsorts', $columns[10]->title()); 93ce92b752Smpwt $this->assertSame('Amt, Kreis oder sonstiger obrigkeitlicher Bezirk', $columns[11]->title()); 94ce92b752Smpwt $this->assertSame('Staatsangehörigkeit', $columns[12]->title()); 95ce92b752Smpwt $this->assertSame('Gemeinde der Brotversorgung', $columns[13]->title()); 96ce92b752Smpwt $this->assertSame('Wohnort bei nur vorübergehend Anwesenden. Aufenthaltsort bei vorübergehend Abwesenden', $columns[14]->title()); 97ce92b752Smpwt $this->assertSame('Für Militärpersonen: Angabe des Dienstgrades', $columns[15]->title()); 98ce92b752Smpwt $this->assertSame('Angabe ob Kriegsgefangener', $columns[16]->title()); 99ce92b752Smpwt } 100ce92b752Smpwt} 101