summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusOfFrance1831Test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/app/Census/CensusOfFrance1831Test.php')
-rw-r--r--tests/app/Census/CensusOfFrance1831Test.php107
1 files changed, 55 insertions, 52 deletions
diff --git a/tests/app/Census/CensusOfFrance1831Test.php b/tests/app/Census/CensusOfFrance1831Test.php
index 37a1f816a4..bde8ed0414 100644
--- a/tests/app/Census/CensusOfFrance1831Test.php
+++ b/tests/app/Census/CensusOfFrance1831Test.php
@@ -19,61 +19,64 @@ namespace Fisharebest\Webtrees\Census;
/**
* Test harness for the class CensusOfFrance1836
*/
-class CensusOfFrance1831Test extends \PHPUnit\Framework\TestCase {
- /**
- * Test the census place and date
- *
- * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831
- */
- public function testPlaceAndDate() {
- $census = new CensusOfFrance1831;
+class CensusOfFrance1831Test extends \PHPUnit\Framework\TestCase
+{
+ /**
+ * Test the census place and date
+ *
+ * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831
+ */
+ public function testPlaceAndDate()
+ {
+ $census = new CensusOfFrance1831;
- $this->assertSame('France', $census->censusPlace());
- $this->assertSame('20 JAN 1831', $census->censusDate());
- }
+ $this->assertSame('France', $census->censusPlace());
+ $this->assertSame('20 JAN 1831', $census->censusDate());
+ }
- /**
- * Test the census columns
- *
- * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831
- * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
- */
- public function testColumns() {
- $census = new CensusOfFrance1831;
- $columns = $census->columns();
+ /**
+ * Test the census columns
+ *
+ * @covers \Fisharebest\Webtrees\Census\CensusOfFrance1831
+ * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
+ */
+ public function testColumns()
+ {
+ $census = new CensusOfFrance1831;
+ $columns = $census->columns();
- $this->assertCount(10, $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->assertCount(10, $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->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('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('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('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());
+ }
}