1ef21b467SGreg Roach<?php 23976b470SGreg Roach 3ef21b467SGreg Roach/** 4ef21b467SGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 6ef21b467SGreg Roach * This program is free software: you can redistribute it and/or modify 7ef21b467SGreg Roach * it under the terms of the GNU General Public License as published by 8ef21b467SGreg Roach * the Free Software Foundation, either version 3 of the License, or 9ef21b467SGreg Roach * (at your option) any later version. 10ef21b467SGreg Roach * This program is distributed in the hope that it will be useful, 11ef21b467SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12ef21b467SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13ef21b467SGreg Roach * GNU General Public License for more details. 14ef21b467SGreg Roach * You should have received a copy of the GNU General Public License 15ef21b467SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16ef21b467SGreg Roach */ 17*fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20ef21b467SGreg Roachnamespace Fisharebest\Webtrees\Census; 21ef21b467SGreg Roach 223cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 233cfcc809SGreg Roach 24ef21b467SGreg Roach/** 25ef21b467SGreg Roach * Test harness for the class CensusOfUnitedStates 26ef21b467SGreg Roach */ 273cfcc809SGreg Roachclass CensusOfUnitedStatesTest extends TestCase 28c1010edaSGreg Roach{ 29ef21b467SGreg Roach /** 30ef21b467SGreg Roach * Test the census place 31ef21b467SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35ef21b467SGreg Roach */ 369b802b22SGreg Roach public function testPlace(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfUnitedStates(); 39ef21b467SGreg Roach 40ef21b467SGreg Roach $this->assertSame('United States', $census->censusPlace()); 41ef21b467SGreg Roach } 42ef21b467SGreg Roach 43ef21b467SGreg Roach /** 44ef21b467SGreg Roach * Test the census dates 45ef21b467SGreg Roach * 4615d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfUnitedStates 4752348eb8SGreg Roach * 4852348eb8SGreg Roach * @return void 49ef21b467SGreg Roach */ 509b802b22SGreg Roach public function testAllDates(): void 51c1010edaSGreg Roach { 5274d6dc0eSGreg Roach $census = new CensusOfUnitedStates(); 53ef21b467SGreg Roach 54ef21b467SGreg Roach $census_dates = $census->allCensusDates(); 55ef21b467SGreg Roach 563e615db9SGreg Roach $this->assertCount(16, $census_dates); 573cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1790::class, $census_dates[0]); 583cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1800::class, $census_dates[1]); 593cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1810::class, $census_dates[2]); 603cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1820::class, $census_dates[3]); 613cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1830::class, $census_dates[4]); 623cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1840::class, $census_dates[5]); 633cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1850::class, $census_dates[6]); 643cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1860::class, $census_dates[7]); 653cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1870::class, $census_dates[8]); 663cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1880::class, $census_dates[9]); 673cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1890::class, $census_dates[10]); 683cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1900::class, $census_dates[11]); 693cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1910::class, $census_dates[12]); 703cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1920::class, $census_dates[13]); 713cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1930::class, $census_dates[14]); 723cfcc809SGreg Roach $this->assertInstanceOf(CensusOfUnitedStates1940::class, $census_dates[15]); 73ef21b467SGreg Roach } 74ef21b467SGreg Roach} 75