. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1946 */ class CensusOfFrance1946Test extends \Fisharebest\Webtrees\TestCase { /** * Test the census place and date * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1946 * * @return void */ public function testPlaceAndDate() { $census = new CensusOfFrance1946; $this->assertSame('France', $census->censusPlace()); $this->assertSame('17 JAN 1946', $census->censusDate()); } /** * Test the census columns * * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1946 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn * * @return void */ public function testColumns() { $census = new CensusOfFrance1946; $columns = $census->columns(); $this->assertCount(6, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSurname', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnRelationToHead', $columns[2]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthYear', $columns[3]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNationality', $columns[4]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $columns[5]); $this->assertSame('Nom', $columns[0]->abbreviation()); $this->assertSame('Prénom', $columns[1]->abbreviation()); $this->assertSame('Parenté', $columns[2]->abbreviation()); $this->assertSame('Année', $columns[3]->abbreviation()); $this->assertSame('Nationalité', $columns[4]->abbreviation()); $this->assertSame('Profession', $columns[5]->abbreviation()); $this->assertSame('Nom de famille', $columns[0]->title()); $this->assertSame('Prénom usuel', $columns[1]->title()); $this->assertSame('Parenté avec le chef de ménage ou situation dans le ménage', $columns[2]->title()); $this->assertSame('Année de naissance', $columns[3]->title()); $this->assertSame('', $columns[4]->title()); $this->assertSame('', $columns[5]->title()); } }