. */ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfUnitedStates1870 */ class CensusOfUnitedStates1870Test extends \PHPUnit_Framework_TestCase { /** * Test the census place and date * * @covers Fisharebest\Webtrees\Census\CensusOfUnitedStates1870 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn */ public function testPlaceAndDate() { $census = new CensusOfUnitedStates1870; $this->assertSame('United States', $census->censusPlace()); $this->assertSame('JUN 1870', $census->censusDate()); } /** * Test the census columns * * @covers Fisharebest\Webtrees\Census\CensusOfUnitedStates1870 */ public function testColumns() { $census = new CensusOfUnitedStates1870; $columns = $census->columns(); $this->assertCount(18, $columns); $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); $this->assertInstanceOf(CensusColumnAge::class, $columns[1]); $this->assertInstanceOf(CensusColumnSexMF::class, $columns[2]); $this->assertInstanceOf(CensusColumnNull::class, $columns[3]); $this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]); $this->assertInstanceOf(CensusColumnNull::class, $columns[5]); $this->assertInstanceOf(CensusColumnNull::class, $columns[6]); $this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[7]); $this->assertInstanceOf(CensusColumnFatherForeign::class, $columns[8]); $this->assertInstanceOf(CensusColumnMotherForeign::class, $columns[9]); $this->assertInstanceOf(CensusColumnMonthIfBornWithinYear::class, $columns[10]); $this->assertInstanceOf(CensusColumnMonthIfMarriedWithinYear::class, $columns[11]); $this->assertInstanceOf(CensusColumnNull::class, $columns[12]); $this->assertInstanceOf(CensusColumnNull::class, $columns[13]); $this->assertInstanceOf(CensusColumnNull::class, $columns[14]); $this->assertInstanceOf(CensusColumnNull::class, $columns[15]); $this->assertInstanceOf(CensusColumnNull::class, $columns[16]); $this->assertInstanceOf(CensusColumnNull::class, $columns[17]); $this->assertSame('', $columns[0]->abbreviation()); $this->assertSame('', $columns[1]->abbreviation()); $this->assertSame('', $columns[2]->abbreviation()); $this->assertSame('', $columns[3]->abbreviation()); $this->assertSame('', $columns[4]->abbreviation()); $this->assertSame('', $columns[5]->abbreviation()); $this->assertSame('', $columns[6]->abbreviation()); $this->assertSame('', $columns[7]->abbreviation()); $this->assertSame('', $columns[8]->abbreviation()); $this->assertSame('', $columns[9]->abbreviation()); $this->assertSame('', $columns[10]->abbreviation()); $this->assertSame('', $columns[11]->abbreviation()); $this->assertSame('', $columns[12]->abbreviation()); $this->assertSame('', $columns[13]->abbreviation()); $this->assertSame('', $columns[14]->abbreviation()); $this->assertSame('', $columns[15]->abbreviation()); $this->assertSame('', $columns[16]->abbreviation()); $this->assertSame('', $columns[17]->abbreviation()); $this->assertSame('', $columns[0]->title()); $this->assertSame('', $columns[1]->title()); $this->assertSame('', $columns[2]->title()); $this->assertSame('', $columns[3]->title()); $this->assertSame('', $columns[4]->title()); $this->assertSame('', $columns[5]->title()); $this->assertSame('', $columns[6]->title()); $this->assertSame('', $columns[7]->title()); $this->assertSame('', $columns[8]->title()); $this->assertSame('', $columns[9]->title()); $this->assertSame('', $columns[10]->title()); $this->assertSame('', $columns[11]->title()); $this->assertSame('', $columns[12]->title()); $this->assertSame('', $columns[13]->title()); $this->assertSame('', $columns[14]->title()); $this->assertSame('', $columns[15]->title()); $this->assertSame('', $columns[16]->title()); $this->assertSame('', $columns[17]->title()); } }