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