xref: /webtrees/tests/app/Census/CensusTest.php (revision 16e7dcbf4079d7ea9a84244c8f3c93e4df7f69a9)
1a53db70dSGreg Roach<?php
2a53db70dSGreg Roach
3a53db70dSGreg Roach/**
4a53db70dSGreg Roach * webtrees: online genealogy
51062a142SGreg Roach * Copyright (C) 2018 webtrees development team
6a53db70dSGreg Roach * This program is free software: you can redistribute it and/or modify
7a53db70dSGreg Roach * it under the terms of the GNU General Public License as published by
8a53db70dSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9a53db70dSGreg Roach * (at your option) any later version.
10a53db70dSGreg Roach * This program is distributed in the hope that it will be useful,
11a53db70dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12a53db70dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13a53db70dSGreg Roach * GNU General Public License for more details.
14a53db70dSGreg Roach * You should have received a copy of the GNU General Public License
15a53db70dSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16a53db70dSGreg Roach */
17a53db70dSGreg Roachnamespace Fisharebest\Webtrees\Census;
18a53db70dSGreg Roach
19a53db70dSGreg Roach/**
20a53db70dSGreg Roach * Test harness for the class CensusColumnAgeFemale5Years
21a53db70dSGreg Roach */
223e983931SGreg Roachclass CensusTest extends \PHPUnit\Framework\TestCase {
23a53db70dSGreg Roach	/**
2415d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\Census
25a53db70dSGreg Roach	 */
26*16e7dcbfSGreg Roach	public function testCensusPlaces() {
27*16e7dcbfSGreg Roach		$censuses = Census::censusPlaces('XX');
28a53db70dSGreg Roach
29ce92b752Smpwt		$this->assertCount(8, $censuses);
30c2a8c8bfSGreg Roach		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfCzechRepublic', $censuses[0]);
31c2a8c8bfSGreg Roach		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDenmark', $censuses[1]);
32ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfDeutschland', $censuses[2]);
33ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfEngland', $censuses[3]);
34ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfFrance', $censuses[4]);
35ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfScotland', $censuses[5]);
36ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfUnitedStates', $censuses[6]);
37ce92b752Smpwt		$this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusOfWales', $censuses[7]);
38a53db70dSGreg Roach	}
39a53db70dSGreg Roach}
40