13e615db9SGreg Roach<?php 23e615db9SGreg Roach/** 33e615db9SGreg Roach * webtrees: online genealogy 41062a142SGreg Roach * Copyright (C) 2018 webtrees development team 53e615db9SGreg Roach * This program is free software: you can redistribute it and/or modify 63e615db9SGreg Roach * it under the terms of the GNU General Public License as published by 73e615db9SGreg Roach * the Free Software Foundation, either version 3 of the License, or 83e615db9SGreg Roach * (at your option) any later version. 93e615db9SGreg Roach * This program is distributed in the hope that it will be useful, 103e615db9SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 113e615db9SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 123e615db9SGreg Roach * GNU General Public License for more details. 133e615db9SGreg Roach * You should have received a copy of the GNU General Public License 143e615db9SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 153e615db9SGreg Roach */ 163e615db9SGreg Roachnamespace Fisharebest\Webtrees\Census; 173e615db9SGreg Roach 183e615db9SGreg Roach/** 193e615db9SGreg Roach * Test harness for the class CensusOfUnitedStates1810 203e615db9SGreg Roach */ 21*84e2cf4eSGreg Roachclass CensusOfUnitedStates1810Test extends \Fisharebest\Webtrees\TestCase 22c1010edaSGreg Roach{ 233e615db9SGreg Roach /** 243e615db9SGreg Roach * Test the census place and date 253e615db9SGreg Roach * 2615d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 273e615db9SGreg Roach */ 28c1010edaSGreg Roach public function testPlaceAndDate() 29c1010edaSGreg Roach { 303e615db9SGreg Roach $census = new CensusOfUnitedStates1810; 313e615db9SGreg Roach 323e615db9SGreg Roach $this->assertSame('United States', $census->censusPlace()); 333e615db9SGreg Roach $this->assertSame('06 AUG 1810', $census->censusDate()); 343e615db9SGreg Roach } 353e615db9SGreg Roach 363e615db9SGreg Roach /** 373e615db9SGreg Roach * Test the census columns 383e615db9SGreg Roach * 3915d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 4015d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 413e615db9SGreg Roach */ 42c1010edaSGreg Roach public function testColumns() 43c1010edaSGreg Roach { 443e615db9SGreg Roach $census = new CensusOfUnitedStates1810; 453e615db9SGreg Roach $columns = $census->columns(); 463e615db9SGreg Roach 473e615db9SGreg Roach $this->assertCount(14, $columns); 483e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnFullName', $columns[0]); 493e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[1]); 503e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[2]); 513e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]); 523e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]); 533e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]); 543e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]); 553e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]); 563e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[8]); 573e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[9]); 583e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[10]); 593e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[11]); 603e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]); 613e615db9SGreg Roach $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[13]); 623e615db9SGreg Roach 633e615db9SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 643e615db9SGreg Roach $this->assertSame('M0-10', $columns[1]->abbreviation()); 653e615db9SGreg Roach $this->assertSame('M10-16', $columns[2]->abbreviation()); 663e615db9SGreg Roach $this->assertSame('M16-26', $columns[3]->abbreviation()); 673e615db9SGreg Roach $this->assertSame('M26-45', $columns[4]->abbreviation()); 683e615db9SGreg Roach $this->assertSame('M45+', $columns[5]->abbreviation()); 693e615db9SGreg Roach $this->assertSame('F0-10', $columns[6]->abbreviation()); 703e615db9SGreg Roach $this->assertSame('F10-16', $columns[7]->abbreviation()); 713e615db9SGreg Roach $this->assertSame('F16-26', $columns[8]->abbreviation()); 723e615db9SGreg Roach $this->assertSame('F26-45', $columns[9]->abbreviation()); 733e615db9SGreg Roach $this->assertSame('F45+', $columns[10]->abbreviation()); 743e615db9SGreg Roach $this->assertSame('Free', $columns[11]->abbreviation()); 753e615db9SGreg Roach $this->assertSame('Slaves', $columns[12]->abbreviation()); 763e615db9SGreg Roach $this->assertSame('Total', $columns[13]->abbreviation()); 773e615db9SGreg Roach 783e615db9SGreg Roach $this->assertSame('Name of head of family', $columns[0]->title()); 793e615db9SGreg Roach $this->assertSame('Free white males 0-10 years', $columns[1]->title()); 803e615db9SGreg Roach $this->assertSame('Free white males 10-16 years', $columns[2]->title()); 813e615db9SGreg Roach $this->assertSame('Free white males 16-26 years', $columns[3]->title()); 823e615db9SGreg Roach $this->assertSame('Free white males 26-45 years', $columns[4]->title()); 833e615db9SGreg Roach $this->assertSame('Free white males 45+ years', $columns[5]->title()); 843e615db9SGreg Roach $this->assertSame('Free white females 0-10 years', $columns[6]->title()); 853e615db9SGreg Roach $this->assertSame('Free white females 10-16 years', $columns[7]->title()); 863e615db9SGreg Roach $this->assertSame('Free white females 16-26 years', $columns[8]->title()); 873e615db9SGreg Roach $this->assertSame('Free white females 26-45 years', $columns[9]->title()); 883e615db9SGreg Roach $this->assertSame('Free white females 45+ years', $columns[10]->title()); 893e615db9SGreg Roach $this->assertSame('All other free persons, except Indians not taxed', $columns[11]->title()); 903e615db9SGreg Roach $this->assertSame('Number of slaves', $columns[12]->title()); 913e615db9SGreg Roach $this->assertSame('Total number of individuals', $columns[13]->title()); 923e615db9SGreg Roach } 933e615db9SGreg Roach} 94