. */ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfDenmark1835 */ class CensusOfDenmark1835Test extends \PHPUnit_Framework_TestCase { /** * Test the census place and date * * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1835 */ public function testPlaceAndDate() { $census = new CensusOfDenmark1835; $this->assertSame('Schleswig-Holstein, Deutschland', $census->censusPlace()); $this->assertSame('18 FEB 1835', $census->censusDate()); } /** * Test the census columns * * @covers Fisharebest\Webtrees\Census\CensusOfDenmark1835 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn */ public function testColumns() { $census = new CensusOfDenmark1835; $columns = $census->columns(); $this->assertCount(5, $columns); $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); $this->assertInstanceOf(CensusColumnAge::class, $columns[1]); $this->assertInstanceOf(CensusColumnConditionEnglish::class, $columns[2]); $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[3]); $this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]); $this->assertSame('TBC', $columns[0]->abbreviation()); $this->assertSame('TBC', $columns[1]->abbreviation()); $this->assertSame('TBC', $columns[2]->abbreviation()); $this->assertSame('TBC', $columns[3]->abbreviation()); $this->assertSame('TBC', $columns[4]->abbreviation()); $this->assertSame('To be confirmed', $columns[0]->title()); $this->assertSame('To be confirmed', $columns[1]->title()); $this->assertSame('To be confirmed', $columns[2]->title()); $this->assertSame('To be confirmed', $columns[3]->title()); $this->assertSame('To be confirmed', $columns[4]->title()); } }