xref: /webtrees/tests/app/Census/CensusOfCzechRepublicTest.php (revision 15d603e7c7c15d20f055d3d9c38d6b133453c5be)
1c2a8c8bfSGreg Roach<?php
2c2a8c8bfSGreg Roach
3c2a8c8bfSGreg Roach/**
4c2a8c8bfSGreg Roach * webtrees: online genealogy
5825270d6SGreg Roach * Copyright (C) 2017 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 */
17c2a8c8bfSGreg Roachnamespace Fisharebest\Webtrees\Census;
18c2a8c8bfSGreg Roach
19c2a8c8bfSGreg Roach/**
20c2a8c8bfSGreg Roach * Test harness for the class CensusOfCzechRepublic
21c2a8c8bfSGreg Roach */
22c2a8c8bfSGreg Roachclass CensusOfCzechRepublicTest extends \PHPUnit_Framework_TestCase {
23c2a8c8bfSGreg Roach	/**
24c2a8c8bfSGreg Roach	 * Test the census place
25c2a8c8bfSGreg Roach	 *
26*15d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic
27c2a8c8bfSGreg Roach	 */
28c2a8c8bfSGreg Roach	public function testPlace() {
29c2a8c8bfSGreg Roach		$census = new CensusOfCzechRepublic;
30c2a8c8bfSGreg Roach
31c2a8c8bfSGreg Roach		$this->assertSame('Česko', $census->censusPlace());
32c2a8c8bfSGreg Roach	}
33c2a8c8bfSGreg Roach
34c2a8c8bfSGreg Roach	/**
35c2a8c8bfSGreg Roach	 * Test the census dates
36c2a8c8bfSGreg Roach	 *
37*15d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\CensusOfCzechRepublic
38c2a8c8bfSGreg Roach	 */
39c2a8c8bfSGreg Roach	public function testAllDates() {
40c2a8c8bfSGreg Roach		$census  = new CensusOfCzechRepublic;
41c2a8c8bfSGreg Roach
42c2a8c8bfSGreg Roach		$census_dates = $census->allCensusDates();
43c2a8c8bfSGreg Roach
44c2a8c8bfSGreg Roach		$this->assertCount(2, $census_dates);
45c2a8c8bfSGreg Roach		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfCzechRepublic1880', $census_dates[0]);
46c2a8c8bfSGreg Roach		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfCzechRepublic1921', $census_dates[1]);
47c2a8c8bfSGreg Roach	}
48c2a8c8bfSGreg Roach}
49