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