1*db7d25eeSGreg Roach<?php 2*db7d25eeSGreg Roach 3*db7d25eeSGreg Roach/** 4*db7d25eeSGreg Roach * webtrees: online genealogy 5*db7d25eeSGreg Roach * Copyright (C) 2015 webtrees development team 6*db7d25eeSGreg Roach * This program is free software: you can redistribute it and/or modify 7*db7d25eeSGreg Roach * it under the terms of the GNU General Public License as published by 8*db7d25eeSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9*db7d25eeSGreg Roach * (at your option) any later version. 10*db7d25eeSGreg Roach * This program is distributed in the hope that it will be useful, 11*db7d25eeSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12*db7d25eeSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13*db7d25eeSGreg Roach * GNU General Public License for more details. 14*db7d25eeSGreg Roach * You should have received a copy of the GNU General Public License 15*db7d25eeSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 16*db7d25eeSGreg Roach */ 17*db7d25eeSGreg Roach 18*db7d25eeSGreg Roachnamespace Fisharebest\Webtrees\Census; 19*db7d25eeSGreg Roach 20*db7d25eeSGreg Roach/** 21*db7d25eeSGreg Roach * Test harness for the class CensusOfFrance1911 22*db7d25eeSGreg Roach */ 23*db7d25eeSGreg Roachclass CensusOfFrance1911Test extends \PHPUnit_Framework_TestCase { 24*db7d25eeSGreg Roach /** 25*db7d25eeSGreg Roach * Test the census place and date 26*db7d25eeSGreg Roach */ 27*db7d25eeSGreg Roach public function testPlaceAndDate() { 28*db7d25eeSGreg Roach $census = new CensusOfFrance1911; 29*db7d25eeSGreg Roach 30*db7d25eeSGreg Roach $this->assertSame('France', $census->censusPlace()); 31*db7d25eeSGreg Roach $this->assertSame('1911', $census->censusDate()); 32*db7d25eeSGreg Roach } 33*db7d25eeSGreg Roach} 34