summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusOfFrance1906Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Census/CensusOfFrance1906Test.php')
-rw-r--r--tests/app/Census/CensusOfFrance1906Test.php42
1 files changed, 21 insertions, 21 deletions
diff --git a/tests/app/Census/CensusOfFrance1906Test.php b/tests/app/Census/CensusOfFrance1906Test.php
index 4deffebbd8..66a7ef4d2f 100644
--- a/tests/app/Census/CensusOfFrance1906Test.php
+++ b/tests/app/Census/CensusOfFrance1906Test.php
@@ -45,29 +45,29 @@ class CensusOfFrance1906Test extends \PHPUnit_Framework_TestCase {
$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\CensusColumnBirthYear', $columns[3]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnRelationToHead', $columns[4]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNationality', $columns[5]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[6]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthYear', $columns[2]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[3]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnNationality', $columns[4]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnRelationToHead', $columns[5]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnOccupation', $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('Année', $columns[3]->abbreviation());
- $this->assertSame('Position', $columns[4]->abbreviation());
- $this->assertSame('Nationalité', $columns[5]->abbreviation());
- $this->assertSame('Lieu', $columns[6]->abbreviation());
- $this->assertSame('Position sociale', $columns[7]->abbreviation());
+ $this->assertSame('Noms', $columns[0]->abbreviation());
+ $this->assertSame('Prénoms', $columns[1]->abbreviation());
+ $this->assertSame('Année', $columns[2]->abbreviation());
+ $this->assertSame('Lieu', $columns[3]->abbreviation());
+ $this->assertSame('Nationalité', $columns[4]->abbreviation());
+ $this->assertSame('Situation', $columns[5]->abbreviation());
+ $this->assertSame('Profession', $columns[6]->abbreviation());
+ $this->assertSame('Empl', $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('Année de naissance', $columns[3]->title());
- $this->assertSame('Position dans le ménage', $columns[4]->title());
- $this->assertSame('Nationalité', $columns[5]->title());
- $this->assertSame('Lieu de naissance', $columns[6]->title());
- $this->assertSame('Position sociale (patron, ouvrier ou employé)', $columns[7]->title());
+ $this->assertSame('Noms de famille', $columns[0]->title());
+ $this->assertSame('', $columns[1]->title());
+ $this->assertSame('Année de naissance', $columns[2]->title());
+ $this->assertSame('Lieu de naissance', $columns[3]->title());
+ $this->assertSame('', $columns[4]->title());
+ $this->assertSame('Situation par rapport au chef de ménage', $columns[5]->title());
+ $this->assertSame('', $columns[6]->title());
+ $this->assertSame('', $columns[7]->title());
}
}