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 46101af0b4SGreg Roach $this->assertCount(10, $columns); 47ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 48*a4500ed5SGreg Roach $this->assertInstanceOf(CensusColumnBirthDate::class, $columns[1]); 49101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnSexMF::class, $columns[2]); 5073d4df56SGreg Roach $this->assertInstanceOf(CensusColumnConditionEnglish::class, $columns[3]); 51101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[4]); 52101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[5]); 53101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[6]); 54101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[7]); 55101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[8]); 56101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[9]); 5740150762SGreg Roach 58101af0b4SGreg Roach $this->assertSame('TBC', $columns[0]->abbreviation()); 59101af0b4SGreg Roach $this->assertSame('TBC', $columns[1]->abbreviation()); 60101af0b4SGreg Roach $this->assertSame('TBC', $columns[2]->abbreviation()); 61101af0b4SGreg Roach $this->assertSame('TBC', $columns[3]->abbreviation()); 62101af0b4SGreg Roach $this->assertSame('TBC', $columns[4]->abbreviation()); 63101af0b4SGreg Roach $this->assertSame('TBC', $columns[5]->abbreviation()); 64101af0b4SGreg Roach $this->assertSame('TBC', $columns[6]->abbreviation()); 65101af0b4SGreg Roach $this->assertSame('TBC', $columns[7]->abbreviation()); 66101af0b4SGreg Roach $this->assertSame('TBC', $columns[8]->abbreviation()); 67101af0b4SGreg Roach $this->assertSame('TBC', $columns[9]->abbreviation()); 6840150762SGreg Roach 69101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[0]->title()); 70101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[1]->title()); 71101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[2]->title()); 72101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[3]->title()); 73101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[4]->title()); 74101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[5]->title()); 75101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[6]->title()); 76101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[7]->title()); 77101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[8]->title()); 78101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[9]->title()); 79ef21b467SGreg Roach } 80db7d25eeSGreg Roach} 81