diff options
| author | Greg Roach <fisharebest@gmail.com> | 2016-02-28 23:26:03 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2016-02-28 23:26:03 +0000 |
| commit | 3e615db9a880f815ae2d87be1487028595c22f43 (patch) | |
| tree | ac3c2f0769e2e4ce4a4a67ed7d878172cc8ecda7 /tests/app/Census/CensusOfUnitedStates1840Test.php | |
| parent | a1dda6ecf4697367301be81a40e70b9ff401fc9c (diff) | |
| download | webtrees-3e615db9a880f815ae2d87be1487028595c22f43.tar.gz webtrees-3e615db9a880f815ae2d87be1487028595c22f43.tar.bz2 webtrees-3e615db9a880f815ae2d87be1487028595c22f43.zip | |
Fix #810 US census
Diffstat (limited to 'tests/app/Census/CensusOfUnitedStates1840Test.php')
| -rw-r--r-- | tests/app/Census/CensusOfUnitedStates1840Test.php | 166 |
1 files changed, 166 insertions, 0 deletions
diff --git a/tests/app/Census/CensusOfUnitedStates1840Test.php b/tests/app/Census/CensusOfUnitedStates1840Test.php new file mode 100644 index 0000000000..4a48ceb0dc --- /dev/null +++ b/tests/app/Census/CensusOfUnitedStates1840Test.php @@ -0,0 +1,166 @@ +<?php + +/** + * webtrees: online genealogy + * Copyright (C) 2016 webtrees development team + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ +namespace Fisharebest\Webtrees\Census; + +/** + * Test harness for the class CensusOfUnitedStates1840 + */ +class CensusOfUnitedStates1840Test extends \PHPUnit_Framework_TestCase { + /** + * Test the census place and date + * + * @covers Fisharebest\Webtrees\Census\CensusOfUnitedStates1840 + */ + public function testPlaceAndDate() { + $census = new CensusOfUnitedStates1840; + + $this->assertSame('United States', $census->censusPlace()); + $this->assertSame('01 JUN 1840', $census->censusDate()); + } + + /** + * Test the census columns + * + * @covers Fisharebest\Webtrees\Census\CensusOfUnitedStates1840 + * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn + */ + public function testColumns() { + $census = new CensusOfUnitedStates1840; + $columns = $census->columns(); + + $this->assertCount(39, $columns); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnFullName', $columns[0]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[1]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[2]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[8]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[9]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[10]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[11]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[12]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[13]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[14]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[15]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[16]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[17]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[18]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[19]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[20]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[21]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[22]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[23]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[24]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[25]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[26]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[27]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[28]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[29]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[30]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[31]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[32]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[33]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[34]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[35]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[36]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[37]); + $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[38]); + + $this->assertSame('Name', $columns[0]->abbreviation()); + $this->assertSame('M0', $columns[1]->abbreviation()); + $this->assertSame('M5', $columns[2]->abbreviation()); + $this->assertSame('M10', $columns[3]->abbreviation()); + $this->assertSame('M15', $columns[4]->abbreviation()); + $this->assertSame('M20', $columns[5]->abbreviation()); + $this->assertSame('M30', $columns[6]->abbreviation()); + $this->assertSame('M40', $columns[7]->abbreviation()); + $this->assertSame('M50', $columns[8]->abbreviation()); + $this->assertSame('M60', $columns[9]->abbreviation()); + $this->assertSame('M70', $columns[10]->abbreviation()); + $this->assertSame('M80', $columns[11]->abbreviation()); + $this->assertSame('M90', $columns[12]->abbreviation()); + $this->assertSame('M100', $columns[13]->abbreviation()); + $this->assertSame('F0', $columns[14]->abbreviation()); + $this->assertSame('F5', $columns[15]->abbreviation()); + $this->assertSame('F10', $columns[16]->abbreviation()); + $this->assertSame('F15', $columns[17]->abbreviation()); + $this->assertSame('F20', $columns[18]->abbreviation()); + $this->assertSame('F30', $columns[19]->abbreviation()); + $this->assertSame('F40', $columns[20]->abbreviation()); + $this->assertSame('F50', $columns[21]->abbreviation()); + $this->assertSame('F60', $columns[22]->abbreviation()); + $this->assertSame('F70', $columns[23]->abbreviation()); + $this->assertSame('F80', $columns[24]->abbreviation()); + $this->assertSame('F90', $columns[25]->abbreviation()); + $this->assertSame('F100', $columns[26]->abbreviation()); + $this->assertSame('M0', $columns[27]->abbreviation()); + $this->assertSame('M10', $columns[28]->abbreviation()); + $this->assertSame('M24', $columns[29]->abbreviation()); + $this->assertSame('M36', $columns[30]->abbreviation()); + $this->assertSame('M55', $columns[31]->abbreviation()); + $this->assertSame('M100', $columns[32]->abbreviation()); + $this->assertSame('F0', $columns[33]->abbreviation()); + $this->assertSame('F10', $columns[34]->abbreviation()); + $this->assertSame('F24', $columns[35]->abbreviation()); + $this->assertSame('F36', $columns[36]->abbreviation()); + $this->assertSame('F55', $columns[37]->abbreviation()); + $this->assertSame('F100', $columns[38]->abbreviation()); + + $this->assertSame('Name of head of family', $columns[0]->title()); + $this->assertSame('Free white males 0-5 years', $columns[1]->title()); + $this->assertSame('Free white males 5-10 years', $columns[2]->title()); + $this->assertSame('Free white males 10-15 years', $columns[3]->title()); + $this->assertSame('Free white males 15-20 years', $columns[4]->title()); + $this->assertSame('Free white males 20-30 years', $columns[5]->title()); + $this->assertSame('Free white males 30-40 years', $columns[6]->title()); + $this->assertSame('Free white males 40-50 years', $columns[7]->title()); + $this->assertSame('Free white males 50-60 years', $columns[8]->title()); + $this->assertSame('Free white males 60-70 years', $columns[9]->title()); + $this->assertSame('Free white males 70-80 years', $columns[10]->title()); + $this->assertSame('Free white males 80-90 years', $columns[11]->title()); + $this->assertSame('Free white males 90-100 years', $columns[12]->title()); + $this->assertSame('Free white males 100+ years', $columns[13]->title()); + $this->assertSame('Free white females 0-5 years', $columns[14]->title()); + $this->assertSame('Free white females 5-10 years', $columns[15]->title()); + $this->assertSame('Free white females 10-15 years', $columns[16]->title()); + $this->assertSame('Free white females 15-20 years', $columns[17]->title()); + $this->assertSame('Free white females 20-30 years', $columns[18]->title()); + $this->assertSame('Free white females 30-40 years', $columns[19]->title()); + $this->assertSame('Free white females 40-50 years', $columns[20]->title()); + $this->assertSame('Free white females 50-60 years', $columns[21]->title()); + $this->assertSame('Free white females 60-70 years', $columns[22]->title()); + $this->assertSame('Free white females 70-80 years', $columns[23]->title()); + $this->assertSame('Free white females 80-90 years', $columns[24]->title()); + $this->assertSame('Free white females 90-100 years', $columns[25]->title()); + $this->assertSame('Free white females 100+ years', $columns[26]->title()); + $this->assertSame('Free colored males 0-10 years', $columns[27]->title()); + $this->assertSame('Free colored males 10-24 years', $columns[28]->title()); + $this->assertSame('Free colored males 24-36 years', $columns[29]->title()); + $this->assertSame('Free colored males 36-55 years', $columns[30]->title()); + $this->assertSame('Free colored males 55-100 years', $columns[31]->title()); + $this->assertSame('Free colored males 100+ years', $columns[32]->title()); + $this->assertSame('Free colored females 0-10 years', $columns[33]->title()); + $this->assertSame('Free colored females 10-24 years', $columns[34]->title()); + $this->assertSame('Free colored females 24-36 years', $columns[35]->title()); + $this->assertSame('Free colored females 36-55 years', $columns[36]->title()); + $this->assertSame('Free colored females 55-100 years', $columns[37]->title()); + $this->assertSame('Free colored females 100+ years', $columns[38]->title()); + } +} |
