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 CensusOfDenmark1845 22db7d25eeSGreg Roach */ 23db7d25eeSGreg Roachclass CensusOfDenmark1845Test extends \PHPUnit_Framework_TestCase { 24db7d25eeSGreg Roach /** 25db7d25eeSGreg Roach * Test the census place and date 26ef21b467SGreg Roach * 27ef21b467SGreg Roach * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1845 28db7d25eeSGreg Roach */ 29db7d25eeSGreg Roach public function testPlaceAndDate() { 30db7d25eeSGreg Roach $census = new CensusOfDenmark1845; 31db7d25eeSGreg Roach 32db7d25eeSGreg Roach $this->assertSame('Danmark', $census->censusPlace()); 33db7d25eeSGreg Roach $this->assertSame('01 FEB 1845', $census->censusDate()); 34db7d25eeSGreg Roach } 35ef21b467SGreg Roach 36ef21b467SGreg Roach /** 37ef21b467SGreg Roach * Test the census columns 38ef21b467SGreg Roach * 39ef21b467SGreg Roach * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1845 40a53db70dSGreg Roach * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn 41ef21b467SGreg Roach */ 42ef21b467SGreg Roach public function testColumns() { 43ef21b467SGreg Roach $census = new CensusOfDenmark1845; 44ef21b467SGreg Roach $columns = $census->columns(); 45ef21b467SGreg Roach 46*101af0b4SGreg Roach $this->assertCount(7, $columns); 47ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); 48ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnAge::class, $columns[1]); 49ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnCondition::class, $columns[2]); 50ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[3]); 51ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]); 52ef21b467SGreg Roach $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[5]); 53*101af0b4SGreg Roach $this->assertInstanceOf(CensusColumnNull::class, $columns[6]); 5440150762SGreg Roach 55*101af0b4SGreg Roach $this->assertSame('TBC', $columns[0]->abbreviation()); 56*101af0b4SGreg Roach $this->assertSame('TBC', $columns[1]->abbreviation()); 57*101af0b4SGreg Roach $this->assertSame('TBC', $columns[2]->abbreviation()); 58*101af0b4SGreg Roach $this->assertSame('TBC', $columns[3]->abbreviation()); 59*101af0b4SGreg Roach $this->assertSame('TBC', $columns[4]->abbreviation()); 60*101af0b4SGreg Roach $this->assertSame('TBC', $columns[5]->abbreviation()); 61*101af0b4SGreg Roach $this->assertSame('TBC', $columns[6]->abbreviation()); 6240150762SGreg Roach 63*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[0]->title()); 64*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[1]->title()); 65*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[2]->title()); 66*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[3]->title()); 67*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[4]->title()); 68*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[5]->title()); 69*101af0b4SGreg Roach $this->assertSame('To be confirmed', $columns[6]->title()); 70ef21b467SGreg Roach } 71db7d25eeSGreg Roach} 72