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 */ 17fcfa147eSGreg 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 CensusOfScotland 26ef21b467SGreg Roach */ 273cfcc809SGreg Roachclass CensusOfScotlandTest extends TestCase 28c1010edaSGreg Roach{ 29ef21b467SGreg Roach /** 30ef21b467SGreg Roach * Test the census place 31ef21b467SGreg Roach * 3215d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland 3352348eb8SGreg Roach * 3452348eb8SGreg Roach * @return void 35ef21b467SGreg Roach */ 369b802b22SGreg Roach public function testPlace(): void 37c1010edaSGreg Roach { 3874d6dc0eSGreg Roach $census = new CensusOfScotland(); 39ef21b467SGreg Roach 40ef21b467SGreg Roach $this->assertSame('Scotland', $census->censusPlace()); 41ef21b467SGreg Roach } 42ef21b467SGreg Roach 43ef21b467SGreg Roach /** 44*d5b0584dSGreg Roach * Test the census language 45*d5b0584dSGreg Roach * 46*d5b0584dSGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic 47*d5b0584dSGreg Roach * 48*d5b0584dSGreg Roach * @return void 49*d5b0584dSGreg Roach */ 50*d5b0584dSGreg Roach public function testLanguage(): void 51*d5b0584dSGreg Roach { 52*d5b0584dSGreg Roach $census = new CensusOfScotland(); 53*d5b0584dSGreg Roach 54*d5b0584dSGreg Roach $this->assertSame('en-GB', $census->censusLanguage()); 55*d5b0584dSGreg Roach } 56*d5b0584dSGreg Roach 57*d5b0584dSGreg Roach /** 58ef21b467SGreg Roach * Test the census dates 59ef21b467SGreg Roach * 6015d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusOfScotland 6152348eb8SGreg Roach * 6252348eb8SGreg Roach * @return void 63ef21b467SGreg Roach */ 649b802b22SGreg Roach public function testAllDates(): void 65c1010edaSGreg Roach { 6674d6dc0eSGreg Roach $census = new CensusOfScotland(); 67ef21b467SGreg Roach 68ef21b467SGreg Roach $census_dates = $census->allCensusDates(); 69ef21b467SGreg Roach 70ef21b467SGreg Roach $this->assertCount(8, $census_dates); 713cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1841::class, $census_dates[0]); 723cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1851::class, $census_dates[1]); 733cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1861::class, $census_dates[2]); 743cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1871::class, $census_dates[3]); 753cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1881::class, $census_dates[4]); 763cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1891::class, $census_dates[5]); 773cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1901::class, $census_dates[6]); 783cfcc809SGreg Roach $this->assertInstanceOf(CensusOfScotland1911::class, $census_dates[7]); 79ef21b467SGreg Roach } 80ef21b467SGreg Roach} 81