summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusOfFrance1872Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Census/CensusOfFrance1872Test.php')
-rw-r--r--tests/app/Census/CensusOfFrance1872Test.php113
1 files changed, 58 insertions, 55 deletions
diff --git a/tests/app/Census/CensusOfFrance1872Test.php b/tests/app/Census/CensusOfFrance1872Test.php
index da1a09ebca..795ed7e040 100644
--- a/tests/app/Census/CensusOfFrance1872Test.php
+++ b/tests/app/Census/CensusOfFrance1872Test.php
@@ -19,64 +19,67 @@ namespace Fisharebest\Webtrees\Census;
/**
* Test harness for the class CensusOfFrance1872
*/
-class CensusOfFrance1872Test extends \PHPUnit\Framework\TestCase {
- /**
- * Test the census place and date
- *
- * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872
- */
- public function testPlaceAndDate() {
- $census = new CensusOfFrance1872;
+class CensusOfFrance1872Test extends \PHPUnit\Framework\TestCase
+{
+ /**
+ * Test the census place and date
+ *
+ * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872
+ */
+ public function testPlaceAndDate()
+ {
+ $census = new CensusOfFrance1872;
- $this->assertSame('France', $census->censusPlace());
- $this->assertSame('18 JAN 1872', $census->censusDate());
- }
+ $this->assertSame('France', $census->censusPlace());
+ $this->assertSame('18 JAN 1872', $census->censusDate());
+ }
- /**
- * Test the census columns
- *
- * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872
- * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
- */
- public function testColumns() {
- $census = new CensusOfFrance1872;
- $columns = $census->columns();
+ /**
+ * Test the census columns
+ *
+ * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1872
+ * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
+ */
+ public function testColumns()
+ {
+ $census = new CensusOfFrance1872;
+ $columns = $census->columns();
- $this->assertCount(11, $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\CensusColumnConditionFrenchGarcon', $columns[3]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme', $columns[4]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf', $columns[5]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille', $columns[6]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme', $columns[7]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve', $columns[8]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnAge', $columns[9]);
- $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[10]);
+ $this->assertCount(11, $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\CensusColumnConditionFrenchGarcon', $columns[3]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchHomme', $columns[4]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuf', $columns[5]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFille', $columns[6]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchFemme', $columns[7]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnConditionFrenchVeuve', $columns[8]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnAge', $columns[9]);
+ $this->assertInstanceOf('Fisharebest\Webtrees\Census\CensusColumnBirthPlace', $columns[10]);
- $this->assertSame('Noms', $columns[0]->abbreviation());
- $this->assertSame('Prénoms', $columns[1]->abbreviation());
- $this->assertSame('Titres', $columns[2]->abbreviation());
- $this->assertSame('Garçons', $columns[3]->abbreviation());
- $this->assertSame('Hommes', $columns[4]->abbreviation());
- $this->assertSame('Veufs', $columns[5]->abbreviation());
- $this->assertSame('Filles', $columns[6]->abbreviation());
- $this->assertSame('Femmes', $columns[7]->abbreviation());
- $this->assertSame('Veuves', $columns[8]->abbreviation());
- $this->assertSame('Âge', $columns[9]->abbreviation());
- $this->assertSame('Nationalité', $columns[10]->abbreviation());
+ $this->assertSame('Noms', $columns[0]->abbreviation());
+ $this->assertSame('Prénoms', $columns[1]->abbreviation());
+ $this->assertSame('Titres', $columns[2]->abbreviation());
+ $this->assertSame('Garçons', $columns[3]->abbreviation());
+ $this->assertSame('Hommes', $columns[4]->abbreviation());
+ $this->assertSame('Veufs', $columns[5]->abbreviation());
+ $this->assertSame('Filles', $columns[6]->abbreviation());
+ $this->assertSame('Femmes', $columns[7]->abbreviation());
+ $this->assertSame('Veuves', $columns[8]->abbreviation());
+ $this->assertSame('Âge', $columns[9]->abbreviation());
+ $this->assertSame('Nationalité', $columns[10]->abbreviation());
- $this->assertSame('Noms de famille', $columns[0]->title());
- $this->assertSame('', $columns[1]->title());
- $this->assertSame('Titres, qualifications, état ou profession et fonctions', $columns[2]->title());
- $this->assertSame('', $columns[3]->title());
- $this->assertSame('Hommes mariés', $columns[4]->title());
- $this->assertSame('', $columns[5]->title());
- $this->assertSame('', $columns[6]->title());
- $this->assertSame('Femmes mariées', $columns[7]->title());
- $this->assertSame('', $columns[8]->title());
- $this->assertSame('', $columns[9]->title());
- $this->assertSame('Nationalité - Lieu de naissance', $columns[10]->title());
- }
+ $this->assertSame('Noms de famille', $columns[0]->title());
+ $this->assertSame('', $columns[1]->title());
+ $this->assertSame('Titres, qualifications, état ou profession et fonctions', $columns[2]->title());
+ $this->assertSame('', $columns[3]->title());
+ $this->assertSame('Hommes mariés', $columns[4]->title());
+ $this->assertSame('', $columns[5]->title());
+ $this->assertSame('', $columns[6]->title());
+ $this->assertSame('Femmes mariées', $columns[7]->title());
+ $this->assertSame('', $columns[8]->title());
+ $this->assertSame('', $columns[9]->title());
+ $this->assertSame('Nationalité - Lieu de naissance', $columns[10]->title());
+ }
}