13e615db9SGreg Roach<?php 2*3976b470SGreg Roach 33e615db9SGreg Roach/** 43e615db9SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 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 */ 17e7f56f2aSGreg Roachdeclare(strict_types=1); 18e7f56f2aSGreg Roach 193e615db9SGreg Roachnamespace Fisharebest\Webtrees\Census; 203e615db9SGreg Roach 213e615db9SGreg Roach/** 223e615db9SGreg Roach * Test harness for the class CensusOfUnitedStates1820 233e615db9SGreg Roach */ 2484e2cf4eSGreg Roachclass CensusOfUnitedStates1820Test extends \Fisharebest\Webtrees\TestCase 25c1010edaSGreg Roach{ 263e615db9SGreg Roach /** 273e615db9SGreg Roach * Test the census place and date 283e615db9SGreg Roach * 2915d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1820 3052348eb8SGreg Roach * 3152348eb8SGreg Roach * @return void 323e615db9SGreg Roach */ 339b802b22SGreg Roach public function testPlaceAndDate(): void 34c1010edaSGreg Roach { 3574d6dc0eSGreg Roach $census = new CensusOfUnitedStates1820(); 363e615db9SGreg Roach 373e615db9SGreg Roach $this->assertSame('United States', $census->censusPlace()); 383e615db9SGreg Roach $this->assertSame('07 AUG 1820', $census->censusDate()); 393e615db9SGreg Roach } 403e615db9SGreg Roach 413e615db9SGreg Roach /** 423e615db9SGreg Roach * Test the census columns 433e615db9SGreg Roach * 4415d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1820 4515d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 4652348eb8SGreg Roach * 4752348eb8SGreg Roach * @return void 483e615db9SGreg Roach */ 499b802b22SGreg Roach public function testColumns(): void 50c1010edaSGreg Roach { 5174d6dc0eSGreg Roach $census = new CensusOfUnitedStates1820(); 523e615db9SGreg Roach $columns = $census->columns(); 533e615db9SGreg Roach 543e615db9SGreg Roach $this->assertCount(32, $columns); 55803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnFullName::class, $columns[0]); 56803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[1]); 57803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[2]); 58803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[3]); 59803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[4]); 60803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[5]); 61803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[6]); 62803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[7]); 63803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[8]); 64803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[9]); 65803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[10]); 66803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[11]); 67803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[12]); 68803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[13]); 69803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[14]); 70803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[15]); 71803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[16]); 72803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[17]); 73803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[18]); 74803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[19]); 75803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[20]); 76803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[21]); 77803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[22]); 78803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[23]); 79803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[24]); 80803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[25]); 81803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[26]); 82803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[27]); 83803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[28]); 84803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[29]); 85803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[30]); 86803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusColumnNull::class, $columns[31]); 873e615db9SGreg Roach 883e615db9SGreg Roach $this->assertSame('Name', $columns[0]->abbreviation()); 893e615db9SGreg Roach $this->assertSame('M0-10', $columns[1]->abbreviation()); 903e615db9SGreg Roach $this->assertSame('M10-16', $columns[2]->abbreviation()); 913e615db9SGreg Roach $this->assertSame('M16-18', $columns[3]->abbreviation()); 923e615db9SGreg Roach $this->assertSame('M16-26', $columns[4]->abbreviation()); 933e615db9SGreg Roach $this->assertSame('M26-45', $columns[5]->abbreviation()); 943e615db9SGreg Roach $this->assertSame('M45+', $columns[6]->abbreviation()); 953e615db9SGreg Roach $this->assertSame('F0-10', $columns[7]->abbreviation()); 963e615db9SGreg Roach $this->assertSame('F10-16', $columns[8]->abbreviation()); 973e615db9SGreg Roach $this->assertSame('F16-26', $columns[9]->abbreviation()); 983e615db9SGreg Roach $this->assertSame('F26-45', $columns[10]->abbreviation()); 993e615db9SGreg Roach $this->assertSame('F45+', $columns[11]->abbreviation()); 1003e615db9SGreg Roach $this->assertSame('FNR', $columns[12]->abbreviation()); 1013e615db9SGreg Roach $this->assertSame('AG', $columns[13]->abbreviation()); 1023e615db9SGreg Roach $this->assertSame('COM', $columns[14]->abbreviation()); 1033e615db9SGreg Roach $this->assertSame('MNF', $columns[15]->abbreviation()); 1043e615db9SGreg Roach $this->assertSame('M0', $columns[16]->abbreviation()); 1053e615db9SGreg Roach $this->assertSame('M14', $columns[17]->abbreviation()); 1063e615db9SGreg Roach $this->assertSame('M26', $columns[18]->abbreviation()); 1073e615db9SGreg Roach $this->assertSame('M45', $columns[19]->abbreviation()); 1083e615db9SGreg Roach $this->assertSame('F0', $columns[20]->abbreviation()); 1093e615db9SGreg Roach $this->assertSame('F14', $columns[21]->abbreviation()); 1103e615db9SGreg Roach $this->assertSame('F26', $columns[22]->abbreviation()); 1113e615db9SGreg Roach $this->assertSame('F45', $columns[23]->abbreviation()); 1123e615db9SGreg Roach $this->assertSame('M0', $columns[24]->abbreviation()); 1133e615db9SGreg Roach $this->assertSame('M14', $columns[25]->abbreviation()); 1143e615db9SGreg Roach $this->assertSame('M26', $columns[26]->abbreviation()); 1153e615db9SGreg Roach $this->assertSame('M45', $columns[27]->abbreviation()); 1163e615db9SGreg Roach $this->assertSame('F0', $columns[28]->abbreviation()); 1173e615db9SGreg Roach $this->assertSame('F14', $columns[29]->abbreviation()); 1183e615db9SGreg Roach $this->assertSame('F26', $columns[30]->abbreviation()); 1193e615db9SGreg Roach $this->assertSame('F45', $columns[31]->abbreviation()); 1203e615db9SGreg Roach 1213e615db9SGreg Roach $this->assertSame('Name of head of family', $columns[0]->title()); 1223e615db9SGreg Roach $this->assertSame('Free white males 0-10 years', $columns[1]->title()); 1233e615db9SGreg Roach $this->assertSame('Free white males 10-16 years', $columns[2]->title()); 1243e615db9SGreg Roach $this->assertSame('Free white males 16-18 years', $columns[3]->title()); 1253e615db9SGreg Roach $this->assertSame('Free white males 16-26 years', $columns[4]->title()); 1263e615db9SGreg Roach $this->assertSame('Free white males 26-45 years', $columns[5]->title()); 1273e615db9SGreg Roach $this->assertSame('Free white males 45+ years', $columns[6]->title()); 1283e615db9SGreg Roach $this->assertSame('Free white females 0-10 years', $columns[7]->title()); 1293e615db9SGreg Roach $this->assertSame('Free white females 10-16 years', $columns[8]->title()); 1303e615db9SGreg Roach $this->assertSame('Free white females 16-26 years', $columns[9]->title()); 1313e615db9SGreg Roach $this->assertSame('Free white females 26-45 years', $columns[10]->title()); 1323e615db9SGreg Roach $this->assertSame('Free white females 45+ years', $columns[11]->title()); 1333e615db9SGreg Roach $this->assertSame('Foreigners not naturalized', $columns[12]->title()); 1343e615db9SGreg Roach $this->assertSame('No. engaged in agriculture', $columns[13]->title()); 1353e615db9SGreg Roach $this->assertSame('No. engaged in commerce', $columns[14]->title()); 1363e615db9SGreg Roach $this->assertSame('No. engaged in manufactures', $columns[15]->title()); 1373e615db9SGreg Roach $this->assertSame('Slave males 0-14 years', $columns[16]->title()); 1383e615db9SGreg Roach $this->assertSame('Slave males 14-26 years', $columns[17]->title()); 1393e615db9SGreg Roach $this->assertSame('Slave males 26-45 years', $columns[18]->title()); 1403e615db9SGreg Roach $this->assertSame('Slave males 45+ years', $columns[19]->title()); 1413e615db9SGreg Roach $this->assertSame('Slave females 0-14 years', $columns[20]->title()); 1423e615db9SGreg Roach $this->assertSame('Slave females 14-26 years', $columns[21]->title()); 1433e615db9SGreg Roach $this->assertSame('Slave females 26-45 years', $columns[22]->title()); 1443e615db9SGreg Roach $this->assertSame('Slave females 45+ years', $columns[23]->title()); 1453e615db9SGreg Roach $this->assertSame('Free colored males 0-14 years', $columns[24]->title()); 1463e615db9SGreg Roach $this->assertSame('Free colored males 14-26 years', $columns[25]->title()); 1473e615db9SGreg Roach $this->assertSame('Free colored males 26-45 years', $columns[26]->title()); 1483e615db9SGreg Roach $this->assertSame('Free colored males 45+ years', $columns[27]->title()); 1493e615db9SGreg Roach $this->assertSame('Free colored females 0-14 years', $columns[28]->title()); 1503e615db9SGreg Roach $this->assertSame('Free colored females 14-26 years', $columns[29]->title()); 1513e615db9SGreg Roach $this->assertSame('Free colored females 26-45 years', $columns[30]->title()); 1523e615db9SGreg Roach $this->assertSame('Free colored females 45+ years', $columns[31]->title()); 1533e615db9SGreg Roach } 1543e615db9SGreg Roach} 155