. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; use Fisharebest\Webtrees\TestCase; /** * Test harness for the class CensusOfDenmark1835 */ class CensusOfDenmark1835Test extends TestCase { /** * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfDenmark1835 * * @return void */ public function testPlaceAndDate(): void { $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 * * @return void */ public function testColumns(): void { $census = new CensusOfDenmark1835(); $columns = $census->columns(); $this->assertCount(4, $columns); $this->assertInstanceOf(CensusColumnFullName::class, $columns[0]); $this->assertInstanceOf(CensusColumnAge::class, $columns[1]); $this->assertInstanceOf(CensusColumnConditionDanish::class, $columns[2]); $this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[3]); $this->assertSame('Navn', $columns[0]->abbreviation()); $this->assertSame('Alder', $columns[1]->abbreviation()); $this->assertSame('Civilstand', $columns[2]->abbreviation()); $this->assertSame('Stilling i familien', $columns[3]->abbreviation()); $this->assertSame('', $columns[0]->title()); $this->assertSame('', $columns[1]->title()); $this->assertSame('', $columns[2]->title()); $this->assertSame('', $columns[3]->title()); } }