xref: /webtrees/tests/app/Census/CensusOfDeutschland1819Test.php (revision 84e2cf4e2b1803b300330f631d304db1a3c443dd)
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 CensusOfDeutschland1819
20ce92b752Smpwt */
21*84e2cf4eSGreg Roachclass CensusOfDeutschland1819Test extends \Fisharebest\Webtrees\TestCase
22c1010edaSGreg Roach{
23ce92b752Smpwt    /**
24ce92b752Smpwt     * Test the census place and date
25ce92b752Smpwt     *
2615d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819
27ce92b752Smpwt     */
28c1010edaSGreg Roach    public function testPlaceAndDate()
29c1010edaSGreg Roach    {
30ce92b752Smpwt        $census = new CensusOfDeutschland1819;
31ce92b752Smpwt
32ce92b752Smpwt        $this->assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace());
33ce92b752Smpwt        $this->assertSame('AUG 1819', $census->censusDate());
34ce92b752Smpwt    }
35ce92b752Smpwt
36ce92b752Smpwt    /**
37ce92b752Smpwt     * Test the census columns
38ce92b752Smpwt     *
3915d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819
4015d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
41ce92b752Smpwt     */
42c1010edaSGreg Roach    public function testColumns()
43c1010edaSGreg Roach    {
44ce92b752Smpwt        $census  = new CensusOfDeutschland1819;
45ce92b752Smpwt        $columns = $census->columns();
46ce92b752Smpwt
47ce92b752Smpwt        $this->assertCount(13, $columns);
48ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[0]);
49ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[1]);
50ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnFullName', $columns[2]);
51ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthYear', $columns[3]);
52ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[4]);
53ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]);
54ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]);
55ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $columns[7]);
56ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[8]);
57ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[9]);
58ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[10]);
59ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnReligion', $columns[11]);
60ce92b752Smpwt        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]);
61ce92b752Smpwt
62ce92b752Smpwt        $this->assertSame('Nr.', $columns[0]->abbreviation());
63ce92b752Smpwt        $this->assertSame('Geschlecht', $columns[1]->abbreviation());
64ce92b752Smpwt        $this->assertSame('Name', $columns[2]->abbreviation());
65ce92b752Smpwt        $this->assertSame('Geburtsdatum', $columns[3]->abbreviation());
66ce92b752Smpwt        $this->assertSame('Geburtsort', $columns[4]->abbreviation());
67ce92b752Smpwt        $this->assertSame('Kirchspiel', $columns[5]->abbreviation());
68ce92b752Smpwt        $this->assertSame('', $columns[6]->abbreviation());
69ce92b752Smpwt        $this->assertSame('Stand/Beruf', $columns[7]->abbreviation());
70ce92b752Smpwt        $this->assertSame('Besitz', $columns[8]->abbreviation());
71ce92b752Smpwt        $this->assertSame('hier seit', $columns[9]->abbreviation());
72ce92b752Smpwt        $this->assertSame('Familienstand', $columns[10]->abbreviation());
73ce92b752Smpwt        $this->assertSame('Religion', $columns[11]->abbreviation());
74ce92b752Smpwt        $this->assertSame('Bemerkungen', $columns[12]->abbreviation());
75ce92b752Smpwt
76ce92b752Smpwt        $this->assertSame('Laufende Num̅er.', $columns[0]->title());
77ce92b752Smpwt        $this->assertSame('Ob männlichen oder weiblichen Geschlechts.', $columns[1]->title());
78ce92b752Smpwt        $this->assertSame('Vor- und Zuname.', $columns[2]->title());
79ce92b752Smpwt        $this->assertSame('Jahr und Tag der Geburt.', $columns[3]->title());
80ce92b752Smpwt        $this->assertSame('Geburtsort.', $columns[4]->title());
81ce92b752Smpwt        $this->assertSame('Kirchspiel, wohin der Geburtsort gehört.', $columns[5]->title());
82ce92b752Smpwt        $this->assertSame('leere Spalte', $columns[6]->title());
83ce92b752Smpwt        $this->assertSame('Stand und Gewerbe.', $columns[7]->title());
84ce92b752Smpwt        $this->assertSame('Grundbesitz.', $columns[8]->title());
85ce92b752Smpwt        $this->assertSame('Wie lange er schon hier ist.', $columns[9]->title());
86ce92b752Smpwt        $this->assertSame('Ob ledig oder verheirathet.', $columns[10]->title());
87ce92b752Smpwt        $this->assertSame('Religion.', $columns[11]->title());
88ce92b752Smpwt        $this->assertSame('Allgemeine Bemerkungen.', $columns[12]->title());
89ce92b752Smpwt    }
90ce92b752Smpwt}
91