13e615db9SGreg Roach<?php 23976b470SGreg Roach 33e615db9SGreg Roach/** 43e615db9SGreg Roach * webtrees: online genealogy 5*5e933c21SGreg Roach * Copyright (C) 2020 webtrees development team 63e615db9SGreg Roach * This program is free software: you can redistribute it and/or modify 73e615db9SGreg Roach * it under the terms of the GNU General Public License as published by 83e615db9SGreg Roach * the Free Software Foundation, either version 3 of the License, or 93e615db9SGreg Roach * (at your option) any later version. 103e615db9SGreg Roach * This program is distributed in the hope that it will be useful, 113e615db9SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 123e615db9SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 133e615db9SGreg Roach * GNU General Public License for more details. 143e615db9SGreg Roach * You should have received a copy of the GNU General Public License 153e615db9SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 163e615db9SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 203e615db9SGreg Roachnamespace Fisharebest\Webtrees\Census; 213e615db9SGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 243e615db9SGreg Roach/** 253e615db9SGreg Roach * Test harness for the class CensusOfUnitedStates1810 263e615db9SGreg Roach */ 273cfcc809SGreg Roachclass CensusOfUnitedStates1810Test extends TestCase 28c1010edaSGreg Roach{ 293e615db9SGreg Roach /** 303e615db9SGreg Roach * Test the census place and date 313e615db9SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 353e615db9SGreg Roach */ 369b802b22SGreg Roach public function testPlaceAndDate(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfUnitedStates1810(); 393e615db9SGreg Roach 40*5e933c21SGreg Roach self::assertSame('United States', $census->censusPlace()); 41*5e933c21SGreg Roach self::assertSame('06 AUG 1810', $census->censusDate()); 423e615db9SGreg Roach } 433e615db9SGreg Roach 443e615db9SGreg Roach /** 453e615db9SGreg Roach * Test the census columns 463e615db9SGreg Roach * 4715d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1810 4815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4952348eb8SGreg Roach * 5052348eb8SGreg Roach * @return void 513e615db9SGreg Roach */ 529b802b22SGreg Roach public function testColumns(): void 53c1010edaSGreg Roach { 5474d6dc0eSGreg Roach $census = new CensusOfUnitedStates1810(); 553e615db9SGreg Roach $columns = $census->columns(); 563e615db9SGreg Roach 57*5e933c21SGreg Roach self::assertCount(14, $columns); 58*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnFullName::class, $columns[0]); 59*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[1]); 60*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[2]); 61*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[3]); 62*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[4]); 63*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[5]); 64*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[6]); 65*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[7]); 66*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[8]); 67*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[9]); 68*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[10]); 69*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[11]); 70*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[12]); 71*5e933c21SGreg Roach self::assertInstanceOf(CensusColumnNull::class, $columns[13]); 723e615db9SGreg Roach 73*5e933c21SGreg Roach self::assertSame('Name', $columns[0]->abbreviation()); 74*5e933c21SGreg Roach self::assertSame('M0-10', $columns[1]->abbreviation()); 75*5e933c21SGreg Roach self::assertSame('M10-16', $columns[2]->abbreviation()); 76*5e933c21SGreg Roach self::assertSame('M16-26', $columns[3]->abbreviation()); 77*5e933c21SGreg Roach self::assertSame('M26-45', $columns[4]->abbreviation()); 78*5e933c21SGreg Roach self::assertSame('M45+', $columns[5]->abbreviation()); 79*5e933c21SGreg Roach self::assertSame('F0-10', $columns[6]->abbreviation()); 80*5e933c21SGreg Roach self::assertSame('F10-16', $columns[7]->abbreviation()); 81*5e933c21SGreg Roach self::assertSame('F16-26', $columns[8]->abbreviation()); 82*5e933c21SGreg Roach self::assertSame('F26-45', $columns[9]->abbreviation()); 83*5e933c21SGreg Roach self::assertSame('F45+', $columns[10]->abbreviation()); 84*5e933c21SGreg Roach self::assertSame('Free', $columns[11]->abbreviation()); 85*5e933c21SGreg Roach self::assertSame('Slaves', $columns[12]->abbreviation()); 86*5e933c21SGreg Roach self::assertSame('Total', $columns[13]->abbreviation()); 873e615db9SGreg Roach 88*5e933c21SGreg Roach self::assertSame('Name of head of family', $columns[0]->title()); 89*5e933c21SGreg Roach self::assertSame('Free white males 0-10 years', $columns[1]->title()); 90*5e933c21SGreg Roach self::assertSame('Free white males 10-16 years', $columns[2]->title()); 91*5e933c21SGreg Roach self::assertSame('Free white males 16-26 years', $columns[3]->title()); 92*5e933c21SGreg Roach self::assertSame('Free white males 26-45 years', $columns[4]->title()); 93*5e933c21SGreg Roach self::assertSame('Free white males 45+ years', $columns[5]->title()); 94*5e933c21SGreg Roach self::assertSame('Free white females 0-10 years', $columns[6]->title()); 95*5e933c21SGreg Roach self::assertSame('Free white females 10-16 years', $columns[7]->title()); 96*5e933c21SGreg Roach self::assertSame('Free white females 16-26 years', $columns[8]->title()); 97*5e933c21SGreg Roach self::assertSame('Free white females 26-45 years', $columns[9]->title()); 98*5e933c21SGreg Roach self::assertSame('Free white females 45+ years', $columns[10]->title()); 99*5e933c21SGreg Roach self::assertSame('All other free persons, except Indians not taxed', $columns[11]->title()); 100*5e933c21SGreg Roach self::assertSame('Number of slaves', $columns[12]->title()); 101*5e933c21SGreg Roach self::assertSame('Total number of individuals', $columns[13]->title()); 1023e615db9SGreg Roach } 1033e615db9SGreg Roach} 104