summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusOfDenmark1921Test.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-09-26 21:59:14 +0100
committerGreg Roach <fisharebest@gmail.com>2015-09-26 21:59:14 +0100
commit40150762995019e237299a92690fdc53f25e4ccf (patch)
tree17c846ae64f14a5def3a4538ad3135a62c57aaa4 /tests/app/Census/CensusOfDenmark1921Test.php
parent289506e348104ebaf4aad14d2f3e735c97b86b73 (diff)
downloadwebtrees-40150762995019e237299a92690fdc53f25e4ccf.tar.gz
webtrees-40150762995019e237299a92690fdc53f25e4ccf.tar.bz2
webtrees-40150762995019e237299a92690fdc53f25e4ccf.zip
Census definitions
Diffstat (limited to 'tests/app/Census/CensusOfDenmark1921Test.php')
-rw-r--r--tests/app/Census/CensusOfDenmark1921Test.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/app/Census/CensusOfDenmark1921Test.php b/tests/app/Census/CensusOfDenmark1921Test.php
index 99a418a7ad..99aee1adc9 100644
--- a/tests/app/Census/CensusOfDenmark1921Test.php
+++ b/tests/app/Census/CensusOfDenmark1921Test.php
@@ -49,5 +49,19 @@ class CensusOfDenmark1921Test extends \PHPUnit_Framework_TestCase {
$this->assertInstanceOf(CensusColumnRelationToHead::class, $columns[3]);
$this->assertInstanceOf(CensusColumnOccupation::class, $columns[4]);
$this->assertInstanceOf(CensusColumnBirthPlace::class, $columns[5]);
+
+ $this->assertSame('', $columns[0]->abbreviation());
+ $this->assertSame('', $columns[1]->abbreviation());
+ $this->assertSame('', $columns[2]->abbreviation());
+ $this->assertSame('', $columns[3]->abbreviation());
+ $this->assertSame('', $columns[4]->abbreviation());
+ $this->assertSame('', $columns[5]->abbreviation());
+
+ $this->assertSame('', $columns[0]->title());
+ $this->assertSame('', $columns[1]->title());
+ $this->assertSame('', $columns[2]->title());
+ $this->assertSame('', $columns[3]->title());
+ $this->assertSame('', $columns[4]->title());
+ $this->assertSame('', $columns[5]->title());
}
}