diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-09-26 21:59:14 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-09-26 21:59:14 +0100 |
| commit | 40150762995019e237299a92690fdc53f25e4ccf (patch) | |
| tree | 17c846ae64f14a5def3a4538ad3135a62c57aaa4 /tests/app/Census/CensusOfUnitedStates1860Test.php | |
| parent | 289506e348104ebaf4aad14d2f3e735c97b86b73 (diff) | |
| download | webtrees-40150762995019e237299a92690fdc53f25e4ccf.tar.gz webtrees-40150762995019e237299a92690fdc53f25e4ccf.tar.bz2 webtrees-40150762995019e237299a92690fdc53f25e4ccf.zip | |
Census definitions
Diffstat (limited to 'tests/app/Census/CensusOfUnitedStates1860Test.php')
| -rw-r--r-- | tests/app/Census/CensusOfUnitedStates1860Test.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/app/Census/CensusOfUnitedStates1860Test.php b/tests/app/Census/CensusOfUnitedStates1860Test.php index 4b4d210e3b..134c34eb52 100644 --- a/tests/app/Census/CensusOfUnitedStates1860Test.php +++ b/tests/app/Census/CensusOfUnitedStates1860Test.php @@ -55,5 +55,31 @@ class CensusOfUnitedStates1860Test extends \PHPUnit_Framework_TestCase { $this->assertInstanceOf(CensusColumnNull::class, $columns[9]); $this->assertInstanceOf(CensusColumnNull::class, $columns[10]); $this->assertInstanceOf(CensusColumnNull::class, $columns[11]); + + $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[6]->abbreviation()); + $this->assertSame('', $columns[7]->abbreviation()); + $this->assertSame('', $columns[8]->abbreviation()); + $this->assertSame('', $columns[9]->abbreviation()); + $this->assertSame('', $columns[10]->abbreviation()); + $this->assertSame('', $columns[11]->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()); + $this->assertSame('', $columns[6]->title()); + $this->assertSame('', $columns[7]->title()); + $this->assertSame('', $columns[8]->title()); + $this->assertSame('', $columns[9]->title()); + $this->assertSame('', $columns[10]->title()); + $this->assertSame('', $columns[11]->title()); } } |
