. */ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1930 */ class CensusOfUnitedStates1930Test extends \PHPUnit_Framework_TestCase { /** * Test the census place and date */ public function testPlaceAndDate() { $census = new CensusOfUnitedStates1930; $this->assertSame('United States', $census->censusPlace()); $this->assertSame('APR 1930', $census->censusDate()); } }