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