1c2a8c8bfSGreg Roach<?php 2*3976b470SGreg Roach 3c2a8c8bfSGreg Roach/** 4c2a8c8bfSGreg Roach * webtrees: online genealogy 58fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 6c2a8c8bfSGreg Roach * This program is free software: you can redistribute it and/or modify 7c2a8c8bfSGreg Roach * it under the terms of the GNU General Public License as published by 8c2a8c8bfSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9c2a8c8bfSGreg Roach * (at your option) any later version. 10c2a8c8bfSGreg Roach * This program is distributed in the hope that it will be useful, 11c2a8c8bfSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12c2a8c8bfSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13c2a8c8bfSGreg Roach * GNU General Public License for more details. 14c2a8c8bfSGreg Roach * You should have received a copy of the GNU General Public License 15c2a8c8bfSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16c2a8c8bfSGreg Roach */ 17e7f56f2aSGreg Roachdeclare(strict_types=1); 18e7f56f2aSGreg Roach 19c2a8c8bfSGreg Roachnamespace Fisharebest\Webtrees\Census; 20c2a8c8bfSGreg Roach 21c2a8c8bfSGreg Roach/** 22c2a8c8bfSGreg Roach * Test harness for the class CensusOfCzechRepublic 23c2a8c8bfSGreg Roach */ 2484e2cf4eSGreg Roachclass CensusOfCzechRepublicTest extends \Fisharebest\Webtrees\TestCase 25c1010edaSGreg Roach{ 26c2a8c8bfSGreg Roach /** 27c2a8c8bfSGreg Roach * Test the census place 28c2a8c8bfSGreg Roach * 2915d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic 3052348eb8SGreg Roach * 3152348eb8SGreg Roach * @return void 32c2a8c8bfSGreg Roach */ 339b802b22SGreg Roach public function testPlace(): void 34c1010edaSGreg Roach { 3574d6dc0eSGreg Roach $census = new CensusOfCzechRepublic(); 36c2a8c8bfSGreg Roach 37c2a8c8bfSGreg Roach $this->assertSame('Česko', $census->censusPlace()); 38c2a8c8bfSGreg Roach } 39c2a8c8bfSGreg Roach 40c2a8c8bfSGreg Roach /** 41c2a8c8bfSGreg Roach * Test the census dates 42c2a8c8bfSGreg Roach * 4315d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic 4452348eb8SGreg Roach * 4552348eb8SGreg Roach * @return void 46c2a8c8bfSGreg Roach */ 479b802b22SGreg Roach public function testAllDates(): void 48c1010edaSGreg Roach { 4974d6dc0eSGreg Roach $census = new CensusOfCzechRepublic(); 50c2a8c8bfSGreg Roach 51c2a8c8bfSGreg Roach $census_dates = $census->allCensusDates(); 52c2a8c8bfSGreg Roach 53fbf0a249SGreg Roach $this->assertCount(5, $census_dates); 54803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusOfCzechRepublic1880::class, $census_dates[0]); 55803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusOfCzechRepublic1890::class, $census_dates[1]); 56803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusOfCzechRepublic1900::class, $census_dates[2]); 57803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusOfCzechRepublic1910::class, $census_dates[3]); 58803193feSGreg Roach $this->assertInstanceOf(\Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921::class, $census_dates[4]); 59c2a8c8bfSGreg Roach } 60c2a8c8bfSGreg Roach} 61