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