xref: /webtrees/tests/app/Census/CensusOfUnitedStates1790Test.php (revision 5a8afed46297e8105e3e5a33ce37e6a8e88bc79d)
13e615db9SGreg Roach<?php
23976b470SGreg Roach
33e615db9SGreg Roach/**
43e615db9SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 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
1589f7189bSGreg Roach * along with this program. If not, see <https://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;
23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
243cfcc809SGreg Roach
25*202c018bSGreg Roach#[CoversClass(CensusOfUnitedStates1790::class)]
26*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)]
273cfcc809SGreg Roachclass CensusOfUnitedStates1790Test extends TestCase
28c1010edaSGreg Roach{
293e615db9SGreg Roach    /**
303e615db9SGreg Roach     * Test the census place and date
313e615db9SGreg Roach     */
329b802b22SGreg Roach    public function testPlaceAndDate(): void
33c1010edaSGreg Roach    {
3474d6dc0eSGreg Roach        $census = new CensusOfUnitedStates1790();
353e615db9SGreg Roach
365e933c21SGreg Roach        self::assertSame('United States', $census->censusPlace());
375e933c21SGreg Roach        self::assertSame('02 AUG 1790', $census->censusDate());
383e615db9SGreg Roach    }
393e615db9SGreg Roach
403e615db9SGreg Roach    /**
413e615db9SGreg Roach     * Test the census columns
423e615db9SGreg Roach     */
439b802b22SGreg Roach    public function testColumns(): void
44c1010edaSGreg Roach    {
4574d6dc0eSGreg Roach        $census  = new CensusOfUnitedStates1790();
463e615db9SGreg Roach        $columns = $census->columns();
473e615db9SGreg Roach
485e933c21SGreg Roach        self::assertCount(8, $columns);
495e933c21SGreg Roach        self::assertInstanceOf(CensusColumnFullName::class, $columns[0]);
505e933c21SGreg Roach        self::assertInstanceOf(CensusColumnOccupation::class, $columns[1]);
515e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[2]);
525e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[3]);
535e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[4]);
545e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[5]);
555e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[6]);
565e933c21SGreg Roach        self::assertInstanceOf(CensusColumnNull::class, $columns[7]);
573e615db9SGreg Roach
585e933c21SGreg Roach        self::assertSame('Name', $columns[0]->abbreviation());
595e933c21SGreg Roach        self::assertSame('Occupation', $columns[1]->abbreviation());
605e933c21SGreg Roach        self::assertSame('White male 16+', $columns[2]->abbreviation());
615e933c21SGreg Roach        self::assertSame('White male 0-16', $columns[3]->abbreviation());
625e933c21SGreg Roach        self::assertSame('White female', $columns[4]->abbreviation());
635e933c21SGreg Roach        self::assertSame('Free', $columns[5]->abbreviation());
645e933c21SGreg Roach        self::assertSame('Slaves', $columns[6]->abbreviation());
655e933c21SGreg Roach        self::assertSame('Total', $columns[7]->abbreviation());
663e615db9SGreg Roach
675e933c21SGreg Roach        self::assertSame('Name of head of family', $columns[0]->title());
685e933c21SGreg Roach        self::assertSame('Professions and occupation', $columns[1]->title());
695e933c21SGreg Roach        self::assertSame('White male of 16 yrs upward', $columns[2]->title());
705e933c21SGreg Roach        self::assertSame('White males of under 16 yrs', $columns[3]->title());
715e933c21SGreg Roach        self::assertSame('All White Females', $columns[4]->title());
725e933c21SGreg Roach        self::assertSame('All other free persons', $columns[5]->title());
735e933c21SGreg Roach        self::assertSame('Number of slaves', $columns[6]->title());
745e933c21SGreg Roach        self::assertSame('Total', $columns[7]->title());
753e615db9SGreg Roach    }
763e615db9SGreg Roach}
77