xref: /webtrees/tests/app/Census/CensusOfDenmark1911Test.php (revision 101af0b4f69bbf5e23334866418f6f0c7529dcbc)
1db7d25eeSGreg Roach<?php
2db7d25eeSGreg Roach
3db7d25eeSGreg Roach/**
4db7d25eeSGreg Roach * webtrees: online genealogy
5db7d25eeSGreg Roach * Copyright (C) 2015 webtrees development team
6db7d25eeSGreg Roach * This program is free software: you can redistribute it and/or modify
7db7d25eeSGreg Roach * it under the terms of the GNU General Public License as published by
8db7d25eeSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9db7d25eeSGreg Roach * (at your option) any later version.
10db7d25eeSGreg Roach * This program is distributed in the hope that it will be useful,
11db7d25eeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12db7d25eeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13db7d25eeSGreg Roach * GNU General Public License for more details.
14db7d25eeSGreg Roach * You should have received a copy of the GNU General Public License
15db7d25eeSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16db7d25eeSGreg Roach */
17db7d25eeSGreg Roach
18db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census;
19db7d25eeSGreg Roach
20db7d25eeSGreg Roach/**
21db7d25eeSGreg Roach * Test harness for the class CensusOfDenmark1911
22db7d25eeSGreg Roach */
23db7d25eeSGreg Roachclass CensusOfDenmark1911Test extends \PHPUnit_Framework_TestCase {
24db7d25eeSGreg Roach	/**
25db7d25eeSGreg Roach	 * Test the census place and date
26ef21b467SGreg Roach	 *
27ef21b467SGreg Roach	 * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1911
28db7d25eeSGreg Roach	 */
29db7d25eeSGreg Roach	public function testPlaceAndDate() {
30db7d25eeSGreg Roach		$census = new CensusOfDenmark1911;
31db7d25eeSGreg Roach
32db7d25eeSGreg Roach		$this->assertSame('Danmark', $census->censusPlace());
33db7d25eeSGreg Roach		$this->assertSame('01 FEB 1911', $census->censusDate());
34db7d25eeSGreg Roach	}
35ef21b467SGreg Roach
36ef21b467SGreg Roach	/**
37ef21b467SGreg Roach	 * Test the census columns
38ef21b467SGreg Roach	 *
39ef21b467SGreg Roach	 * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1911
40a53db70dSGreg Roach	 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn
41ef21b467SGreg Roach	 */
42ef21b467SGreg Roach	public function testColumns() {
43ef21b467SGreg Roach		$census  = new CensusOfDenmark1911;
44ef21b467SGreg Roach		$columns = $census->columns();
45ef21b467SGreg Roach
46*101af0b4SGreg Roach		$this->assertCount(10, $columns);
47ef21b467SGreg Roach		$this->assertInstanceOf(CensusColumnFullName::class, $columns[0]);
48ef21b467SGreg Roach		$this->assertInstanceOf(CensusColumnAge::class, $columns[1]);
49*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnSexMF::class, $columns[2]);
50*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnCondition::class, $columns[3]);
51*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[4]);
52*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnOccupation::class, $columns[5]);
53*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[6]);
54*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnNull::class, $columns[7]);
55*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnNull::class, $columns[8]);
56*101af0b4SGreg Roach		$this->assertInstanceOf(CensusColumnNull::class, $columns[9]);
5740150762SGreg Roach
58*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[0]->abbreviation());
59*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[1]->abbreviation());
60*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[2]->abbreviation());
61*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[3]->abbreviation());
62*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[4]->abbreviation());
63*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[5]->abbreviation());
64*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[6]->abbreviation());
65*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[7]->abbreviation());
66*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[8]->abbreviation());
67*101af0b4SGreg Roach		$this->assertSame('TBC', $columns[9]->abbreviation());
6840150762SGreg Roach
69*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[0]->title());
70*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[1]->title());
71*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[2]->title());
72*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[3]->title());
73*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[4]->title());
74*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[5]->title());
75*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[6]->title());
76*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[7]->title());
77*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[8]->title());
78*101af0b4SGreg Roach		$this->assertSame('To be confirmed', $columns[9]->title());
79ef21b467SGreg Roach	}
80db7d25eeSGreg Roach}
81