xref: /webtrees/tests/app/Census/CensusOfDeutschland1819Test.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
1ce92b752Smpwt<?php
23976b470SGreg Roach
3ce92b752Smpwt/**
4ce92b752Smpwt * webtrees: online genealogy
5*89f7189bSGreg Roach * Copyright (C) 2021 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
15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16ce92b752Smpwt */
17fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20ce92b752Smpwtnamespace Fisharebest\Webtrees\Census;
21ce92b752Smpwt
223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
233cfcc809SGreg Roach
24ce92b752Smpwt/**
25ce92b752Smpwt * Test harness for the class CensusOfDeutschland1819
26ce92b752Smpwt */
273cfcc809SGreg Roachclass CensusOfDeutschland1819Test extends TestCase
28c1010edaSGreg Roach{
29ce92b752Smpwt    /**
30ce92b752Smpwt     * Test the census place and date
31ce92b752Smpwt     *
3215d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819
3352348eb8SGreg Roach     *
3452348eb8SGreg Roach     * @return void
35ce92b752Smpwt     */
369b802b22SGreg Roach    public function testPlaceAndDate(): void
37c1010edaSGreg Roach    {
3874d6dc0eSGreg Roach        $census = new CensusOfDeutschland1819();
39ce92b752Smpwt
405e933c21SGreg Roach        self::assertSame('Mecklenburg-Schwerin, Deutschland', $census->censusPlace());
415e933c21SGreg Roach        self::assertSame('AUG 1819', $census->censusDate());
42ce92b752Smpwt    }
43ce92b752Smpwt
44ce92b752Smpwt    /**
45ce92b752Smpwt     * Test the census columns
46ce92b752Smpwt     *
4715d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDeutschland1819
4815d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
4952348eb8SGreg Roach     *
5052348eb8SGreg Roach     * @return void
51ce92b752Smpwt     */
529b802b22SGreg Roach    public function testColumns(): void
53c1010edaSGreg Roach    {
5474d6dc0eSGreg Roach        $census  = new CensusOfDeutschland1819();
55ce92b752Smpwt        $columns = $census->columns();
56ce92b752Smpwt
575e933c21SGreg Roach        self::assertCount(13, $columns);
585e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[0]);
595e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[1]);
605e933c21SGreg Roach        self::assertInstanceOf(CensusColumnFullName::class, $columns[2]);
615e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthYear::class, $columns[3]);
625e933c21SGreg Roach        self::assertInstanceOf(CensusColumnBirthPlace::class, $columns[4]);
635e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[5]);
645e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[6]);
655e933c21SGreg Roach        self::assertInstanceOf(CensusColumnOccupation::class, $columns[7]);
665e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[8]);
675e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[9]);
685e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[10]);
695e933c21SGreg Roach        self::assertInstanceOf(CensusColumnReligion::class, $columns[11]);
705e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[12]);
71ce92b752Smpwt
725e933c21SGreg Roach        self::assertSame('Nr.', $columns[0]->abbreviation());
735e933c21SGreg Roach        self::assertSame('Geschlecht', $columns[1]->abbreviation());
745e933c21SGreg Roach        self::assertSame('Name', $columns[2]->abbreviation());
755e933c21SGreg Roach        self::assertSame('Geburtsdatum', $columns[3]->abbreviation());
765e933c21SGreg Roach        self::assertSame('Geburtsort', $columns[4]->abbreviation());
775e933c21SGreg Roach        self::assertSame('Kirchspiel', $columns[5]->abbreviation());
785e933c21SGreg Roach        self::assertSame('', $columns[6]->abbreviation());
795e933c21SGreg Roach        self::assertSame('Stand/Beruf', $columns[7]->abbreviation());
805e933c21SGreg Roach        self::assertSame('Besitz', $columns[8]->abbreviation());
815e933c21SGreg Roach        self::assertSame('hier seit', $columns[9]->abbreviation());
825e933c21SGreg Roach        self::assertSame('Familienstand', $columns[10]->abbreviation());
835e933c21SGreg Roach        self::assertSame('Religion', $columns[11]->abbreviation());
845e933c21SGreg Roach        self::assertSame('Bemerkungen', $columns[12]->abbreviation());
85ce92b752Smpwt
865e933c21SGreg Roach        self::assertSame('Laufende Num̅er.', $columns[0]->title());
875e933c21SGreg Roach        self::assertSame('Ob männlichen oder weiblichen Geschlechts.', $columns[1]->title());
885e933c21SGreg Roach        self::assertSame('Vor- und Zuname.', $columns[2]->title());
895e933c21SGreg Roach        self::assertSame('Jahr und Tag der Geburt.', $columns[3]->title());
905e933c21SGreg Roach        self::assertSame('Geburtsort.', $columns[4]->title());
915e933c21SGreg Roach        self::assertSame('Kirchspiel, wohin der Geburtsort gehört.', $columns[5]->title());
925e933c21SGreg Roach        self::assertSame('leere Spalte', $columns[6]->title());
935e933c21SGreg Roach        self::assertSame('Stand und Gewerbe.', $columns[7]->title());
945e933c21SGreg Roach        self::assertSame('Grundbesitz.', $columns[8]->title());
955e933c21SGreg Roach        self::assertSame('Wie lange er schon hier ist.', $columns[9]->title());
965e933c21SGreg Roach        self::assertSame('Ob ledig oder verheirathet.', $columns[10]->title());
975e933c21SGreg Roach        self::assertSame('Religion.', $columns[11]->title());
985e933c21SGreg Roach        self::assertSame('Allgemeine Bemerkungen.', $columns[12]->title());
99ce92b752Smpwt    }
100ce92b752Smpwt}
101