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