xref: /webtrees/tests/app/Census/CensusOfDeutschlandNL1867Test.php (revision 52348eb8c11b06a8488e13475e6561273832716a)
1ce92b752Smpwt<?php
2ce92b752Smpwt/**
3ce92b752Smpwt * webtrees: online genealogy
41062a142SGreg Roach * Copyright (C) 2018 webtrees development team
5ce92b752Smpwt * This program is free software: you can redistribute it and/or modify
6ce92b752Smpwt * it under the terms of the GNU General Public License as published by
7ce92b752Smpwt * the Free Software Foundation, either version 3 of the License, or
8ce92b752Smpwt * (at your option) any later version.
9ce92b752Smpwt * This program is distributed in the hope that it will be useful,
10ce92b752Smpwt * but WITHOUT ANY WARRANTY; without even the implied warranty of
11ce92b752Smpwt * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12ce92b752Smpwt * GNU General Public License for more details.
13ce92b752Smpwt * You should have received a copy of the GNU General Public License
14ce92b752Smpwt * along with this program. If not, see <http://www.gnu.org/licenses/>.
15ce92b752Smpwt */
16ce92b752Smpwtnamespace Fisharebest\Webtrees\Census;
17ce92b752Smpwt
18ce92b752Smpwt/**
19ce92b752Smpwt * Test harness for the class CensusOfDeutschlandNL1867
20ce92b752Smpwt */
2184e2cf4eSGreg Roachclass CensusOfDeutschlandNL1867Test extends \Fisharebest\Webtrees\TestCase
22c1010edaSGreg Roach{
23ce92b752Smpwt    /**
24ce92b752Smpwt     * Test the census place and date
25ce92b752Smpwt     *
2615d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschlandNL1867
27*52348eb8SGreg Roach     *
28*52348eb8SGreg Roach     * @return void
29ce92b752Smpwt     */
30c1010edaSGreg Roach    public function testPlaceAndDate()
31c1010edaSGreg Roach    {
32ce92b752Smpwt        $census = new CensusOfDeutschlandNL1867;
33ce92b752Smpwt
34f87700e4SGreg Roach        $this->assertSame('Mecklenburg-Schwerin (Nachtragsliste), Deutschland', $census->censusPlace());
35ce92b752Smpwt        $this->assertSame('03 DEC 1867', $census->censusDate());
36ce92b752Smpwt    }
37ce92b752Smpwt
38ce92b752Smpwt    /**
39ce92b752Smpwt     * Test the census columns
40ce92b752Smpwt     *
4115d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschlandNL1867
4215d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
43*52348eb8SGreg Roach     *
44*52348eb8SGreg Roach     * @return void
45ce92b752Smpwt     */
46c1010edaSGreg Roach    public function testColumns()
47c1010edaSGreg Roach    {
48ce92b752Smpwt        $census  = new CensusOfDeutschlandNL1867;
49ce92b752Smpwt        $columns = $census->columns();
50ce92b752Smpwt
51ce92b752Smpwt        $this->assertCount(18, $columns);
52ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]);
53ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]);
54ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSurname', $columns[2]);
55ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]);
56ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]);
57ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthYear', $columns[5]);
58ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnReligion', $columns[6]);
59ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]);
60ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[8]);
61ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[9]);
62ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[10]);
63ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[11]);
64ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]);
65ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[13]);
66ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[14]);
67ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[15]);
68ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[16]);
69ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[17]);
70ce92b752Smpwt
71ce92b752Smpwt        $this->assertSame('1.Nr.', $columns[0]->abbreviation());
72ce92b752Smpwt        $this->assertSame('2.Vorname', $columns[1]->abbreviation());
73ce92b752Smpwt        $this->assertSame('3.Familienname', $columns[2]->abbreviation());
74ce92b752Smpwt        $this->assertSame('4.männlich', $columns[3]->abbreviation());
75ce92b752Smpwt        $this->assertSame('5.weiblich', $columns[4]->abbreviation());
76ce92b752Smpwt        $this->assertSame('6.Geburtsjahr', $columns[5]->abbreviation());
77ce92b752Smpwt        $this->assertSame('7.Religion', $columns[6]->abbreviation());
78ce92b752Smpwt        $this->assertSame('8.ledig', $columns[7]->abbreviation());
79ce92b752Smpwt        $this->assertSame('9.verehelicht', $columns[8]->abbreviation());
80ce92b752Smpwt        $this->assertSame('10.verwittwet', $columns[9]->abbreviation());
81ce92b752Smpwt        $this->assertSame('11.geschieden', $columns[10]->abbreviation());
82ce92b752Smpwt        $this->assertSame('12.StA_M-S', $columns[11]->abbreviation());
83ce92b752Smpwt        $this->assertSame('13.StA', $columns[12]->abbreviation());
84ce92b752Smpwt        $this->assertSame('14.', $columns[13]->abbreviation());
85ce92b752Smpwt        $this->assertSame('15.', $columns[14]->abbreviation());
86ce92b752Smpwt        $this->assertSame('16.', $columns[15]->abbreviation());
87ce92b752Smpwt        $this->assertSame('17.', $columns[16]->abbreviation());
88ce92b752Smpwt        $this->assertSame('18.Aufenthaltsort', $columns[17]->abbreviation());
89ce92b752Smpwt
90ce92b752Smpwt        $this->assertSame('Ordnungs-Nummer.', $columns[0]->title());
91ce92b752Smpwt        $this->assertSame('I. Vor- und Familienname jeder Person. Vorname.', $columns[1]->title());
92ce92b752Smpwt        $this->assertSame('I. Vor- und Familienname jeder Person. Familienname.', $columns[2]->title());
93ce92b752Smpwt        $this->assertSame('II. Geschlecht männlich.', $columns[3]->title());
94ce92b752Smpwt        $this->assertSame('II. Geschlecht weiblich.', $columns[4]->title());
95ce92b752Smpwt        $this->assertSame('III. Alter.', $columns[5]->title());
96ce92b752Smpwt        $this->assertSame('IV. Religionsbekenntnis.', $columns[6]->title());
97ce92b752Smpwt        $this->assertSame('V. Familienstand. ledig.', $columns[7]->title());
98ce92b752Smpwt        $this->assertSame('V. Familienstand. verehelicht.', $columns[8]->title());
99ce92b752Smpwt        $this->assertSame('V. Familienstand. verwittwet.', $columns[9]->title());
100ce92b752Smpwt        $this->assertSame('V. Familienstand. geschieden.', $columns[10]->title());
101ce92b752Smpwt        $this->assertSame('VI. Staatsangehörigkeit. Mecklenburg-Schwerinscher Unterthan.', $columns[11]->title());
102ce92b752Smpwt        $this->assertSame('VI. Staatsangehörigkeit. Anderen Staaten angehörig. Welchem Staat?', $columns[12]->title());
103ce92b752Smpwt        $this->assertSame('VII. Art des Abwesenheit vom Zählungsorte. Nicht über ein Jahr Abwesende als See- oder Flußschiffer.', $columns[13]->title());
104ce92b752Smpwt        $this->assertSame('VII. Art des Abwesenheit vom Zählungsorte. Nicht über ein Jahr Abwesende auf Land- oder Seereisen.', $columns[14]->title());
105ce92b752Smpwt        $this->assertSame('VII. Art des Abwesenheit vom Zählungsorte. Nicht über ein Jahr Abwesende auf Besuch außerhalb des Orts.', $columns[15]->title());
106ce92b752Smpwt        $this->assertSame('VII. Art des Aufenthalts am Zählungsort. Ueber ein Jahr, oder in anderer Art als nach Spalte 14 bis 16 Abwesende.', $columns[16]->title());
107ce92b752Smpwt        $this->assertSame('VIII. Vermuthlicher Aufenthaltsort zur Zählungszeit.', $columns[17]->title());
108ce92b752Smpwt    }
109ce92b752Smpwt}
110