xref: /webtrees/tests/app/Census/CensusOfUnitedStates1790Test.php (revision 52348eb8c11b06a8488e13475e6561273832716a)
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 CensusOfUnitedStates1790
203e615db9SGreg Roach */
2184e2cf4eSGreg Roachclass CensusOfUnitedStates1790Test extends \Fisharebest\Webtrees\TestCase
22c1010edaSGreg Roach{
233e615db9SGreg Roach    /**
243e615db9SGreg Roach     * Test the census place and date
253e615db9SGreg Roach     *
2615d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1790
27*52348eb8SGreg Roach     *
28*52348eb8SGreg Roach     * @return void
293e615db9SGreg Roach     */
30c1010edaSGreg Roach    public function testPlaceAndDate()
31c1010edaSGreg Roach    {
323e615db9SGreg Roach        $census = new CensusOfUnitedStates1790;
333e615db9SGreg Roach
343e615db9SGreg Roach        $this->assertSame('United States', $census->censusPlace());
353e615db9SGreg Roach        $this->assertSame('02 AUG 1790', $census->censusDate());
363e615db9SGreg Roach    }
373e615db9SGreg Roach
383e615db9SGreg Roach    /**
393e615db9SGreg Roach     * Test the census columns
403e615db9SGreg Roach     *
4115d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates1790
4215d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
43*52348eb8SGreg Roach     *
44*52348eb8SGreg Roach     * @return void
453e615db9SGreg Roach     */
46c1010edaSGreg Roach    public function testColumns()
47c1010edaSGreg Roach    {
483e615db9SGreg Roach        $census  = new CensusOfUnitedStates1790;
493e615db9SGreg Roach        $columns = $census->columns();
503e615db9SGreg Roach
513e615db9SGreg Roach        $this->assertCount(8, $columns);
523e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnFullName', $columns[0]);
533e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $columns[1]);
543e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[2]);
553e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[3]);
563e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[4]);
573e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[5]);
583e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]);
593e615db9SGreg Roach        $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]);
603e615db9SGreg Roach
613e615db9SGreg Roach        $this->assertSame('Name', $columns[0]->abbreviation());
623e615db9SGreg Roach        $this->assertSame('Occupation', $columns[1]->abbreviation());
633e615db9SGreg Roach        $this->assertSame('White male 16+', $columns[2]->abbreviation());
643e615db9SGreg Roach        $this->assertSame('White male 0-16', $columns[3]->abbreviation());
653e615db9SGreg Roach        $this->assertSame('White female', $columns[4]->abbreviation());
663e615db9SGreg Roach        $this->assertSame('Free', $columns[5]->abbreviation());
673e615db9SGreg Roach        $this->assertSame('Slaves', $columns[6]->abbreviation());
683e615db9SGreg Roach        $this->assertSame('Total', $columns[7]->abbreviation());
693e615db9SGreg Roach
703e615db9SGreg Roach        $this->assertSame('Name of head of family', $columns[0]->title());
713e615db9SGreg Roach        $this->assertSame('Professions and occupation', $columns[1]->title());
723e615db9SGreg Roach        $this->assertSame('White male of 16 yrs upward', $columns[2]->title());
733e615db9SGreg Roach        $this->assertSame('White males of under 16 yrs', $columns[3]->title());
743e615db9SGreg Roach        $this->assertSame('All White Females', $columns[4]->title());
753e615db9SGreg Roach        $this->assertSame('All other free persons', $columns[5]->title());
763e615db9SGreg Roach        $this->assertSame('Number of slaves', $columns[6]->title());
773e615db9SGreg Roach        $this->assertSame('Total', $columns[7]->title());
783e615db9SGreg Roach    }
793e615db9SGreg Roach}
80