. */ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfScotland1911 */ class CensusOfScotland1911Test extends \PHPUnit_Framework_TestCase { /** * Test the census place and date */ public function testPlaceAndDate() { $census = new CensusOfScotland1911; $this->assertSame('Scotland', $census->censusPlace()); $this->assertSame('02 MAR 1911', $census->censusDate()); } }