xref: /webtrees/tests/app/Census/CensusOfDenmark1803Test.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
1548ca0ddSGreg Roach<?php
23976b470SGreg Roach
3548ca0ddSGreg Roach/**
4548ca0ddSGreg Roach * webtrees: online genealogy
58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team
6548ca0ddSGreg Roach * This program is free software: you can redistribute it and/or modify
7548ca0ddSGreg Roach * it under the terms of the GNU General Public License as published by
8548ca0ddSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9548ca0ddSGreg Roach * (at your option) any later version.
10548ca0ddSGreg Roach * This program is distributed in the hope that it will be useful,
11548ca0ddSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12548ca0ddSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13548ca0ddSGreg Roach * GNU General Public License for more details.
14548ca0ddSGreg Roach * You should have received a copy of the GNU General Public License
15548ca0ddSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16548ca0ddSGreg Roach */
17*fcfa147eSGreg Roach
18e7f56f2aSGreg Roachdeclare(strict_types=1);
19e7f56f2aSGreg Roach
20548ca0ddSGreg Roachnamespace Fisharebest\Webtrees\Census;
21548ca0ddSGreg Roach
223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase;
233cfcc809SGreg Roach
24548ca0ddSGreg Roach/**
25548ca0ddSGreg Roach * Test harness for the class CensusOfDenmark1803
26548ca0ddSGreg Roach */
273cfcc809SGreg Roachclass CensusOfDenmark1803Test extends TestCase
28c1010edaSGreg Roach{
29548ca0ddSGreg Roach    /**
30548ca0ddSGreg Roach     * Test the census place and date
31548ca0ddSGreg Roach     *
3215d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803
3352348eb8SGreg Roach     *
3452348eb8SGreg Roach     * @return void
35548ca0ddSGreg Roach     */
369b802b22SGreg Roach    public function testPlaceAndDate(): void
37c1010edaSGreg Roach    {
3874d6dc0eSGreg Roach        $census = new CensusOfDenmark1803();
39548ca0ddSGreg Roach
40548ca0ddSGreg Roach        $this->assertSame('Schleswig-Holstein, Deutschland', $census->censusPlace());
41548ca0ddSGreg Roach        $this->assertSame('01 FEB 1803', $census->censusDate());
42548ca0ddSGreg Roach    }
43548ca0ddSGreg Roach
44548ca0ddSGreg Roach    /**
45548ca0ddSGreg Roach     * Test the census columns
46548ca0ddSGreg Roach     *
4715d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1803
4815d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
4952348eb8SGreg Roach     *
5052348eb8SGreg Roach     * @return void
51548ca0ddSGreg Roach     */
529b802b22SGreg Roach    public function testColumns(): void
53c1010edaSGreg Roach    {
5474d6dc0eSGreg Roach        $census  = new CensusOfDenmark1803();
55548ca0ddSGreg Roach        $columns = $census->columns();
56548ca0ddSGreg Roach
57548ca0ddSGreg Roach        $this->assertCount(5, $columns);
583cfcc809SGreg Roach        $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]);
593cfcc809SGreg Roach        $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[1]);
603cfcc809SGreg Roach        $this->assertInstanceOf(CensusColumnAge::class, $columns[2]);
613cfcc809SGreg Roach        $this->assertInstanceOf(CensusColumnConditionDanish::class, $columns[3]);
623cfcc809SGreg Roach        $this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]);
63548ca0ddSGreg Roach
644c219c47SGreg Roach        $this->assertSame('Navn', $columns[0]->abbreviation());
654c219c47SGreg Roach        $this->assertSame('Stilling i familien', $columns[1]->abbreviation());
664c219c47SGreg Roach        $this->assertSame('Alder', $columns[2]->abbreviation());
674c219c47SGreg Roach        $this->assertSame('Civilstand', $columns[3]->abbreviation());
684c219c47SGreg Roach        $this->assertSame('Erhverv', $columns[4]->abbreviation());
69548ca0ddSGreg Roach
704c219c47SGreg Roach        $this->assertSame('', $columns[0]->title());
714c219c47SGreg Roach        $this->assertSame('', $columns[1]->title());
724c219c47SGreg Roach        $this->assertSame('', $columns[2]->title());
734c219c47SGreg Roach        $this->assertSame('', $columns[3]->title());
744c219c47SGreg Roach        $this->assertSame('', $columns[4]->title());
75548ca0ddSGreg Roach    }
76548ca0ddSGreg Roach}
77