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