. */ namespace Fisharebest\Webtrees\Census; /** * Test harness for the class CensusOfFrance1851 */ class CensusOfFrance1851Test extends \PHPUnit_Framework_TestCase { /** * Test the census place and date * * @covers Fisharebest\Webtrees\Census\CensusOfFrance1851 */ public function testPlaceAndDate() { $census = new CensusOfFrance1851; $this->assertSame('France', $census->censusPlace()); $this->assertSame('1851', $census->censusDate()); } /** * Test the census columns * * @covers Fisharebest\Webtrees\Census\CensusOfFrance1851 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn */ public function testColumns() { $census = new CensusOfFrance1851; $columns = $census->columns(); $this->assertCount(8, $columns); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnSurname', $columns[0]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnGivenNames', $columns[1]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $columns[2]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnAge', $columns[3]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrench', $columns[4]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNationality', $columns[5]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[6]); $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNull', $columns[7]); $this->assertSame('Nom', $columns[0]->abbreviation()); $this->assertSame('Prénom', $columns[1]->abbreviation()); $this->assertSame('Profession', $columns[2]->abbreviation()); $this->assertSame('Âge', $columns[3]->abbreviation()); $this->assertSame('Situtation pers.', $columns[4]->abbreviation()); $this->assertSame('Nationalité', $columns[5]->abbreviation()); $this->assertSame('Religion', $columns[6]->abbreviation()); $this->assertSame('Maladies', $columns[7]->abbreviation()); $this->assertSame('Nom de famille', $columns[0]->title()); $this->assertSame('Prénom', $columns[1]->title()); $this->assertSame('Profession', $columns[2]->title()); $this->assertSame('Âge', $columns[3]->title()); $this->assertSame('Situation personnelle (marié, veuf…)', $columns[4]->title()); $this->assertSame('Nationalité', $columns[5]->title()); $this->assertSame('Religion', $columns[6]->title()); $this->assertSame('Infirmités et maladies', $columns[7]->title()); } }