diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-10-22 22:20:02 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-10-22 22:20:02 +0100 |
| commit | 2c9f0210e312f5a9da26db20890811008d029571 (patch) | |
| tree | 40e794f31e68b2bda4d69db18942e5b48befbf4b /tests/app/Census/CensusOfUnitedStates1860Test.php | |
| parent | 4e153c6af1eb3f56ad3d7f7db56fcaebf3f310bc (diff) | |
| download | webtrees-2c9f0210e312f5a9da26db20890811008d029571.tar.gz webtrees-2c9f0210e312f5a9da26db20890811008d029571.tar.bz2 webtrees-2c9f0210e312f5a9da26db20890811008d029571.zip | |
US 1860 census
Diffstat (limited to 'tests/app/Census/CensusOfUnitedStates1860Test.php')
| -rw-r--r-- | tests/app/Census/CensusOfUnitedStates1860Test.php | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/tests/app/Census/CensusOfUnitedStates1860Test.php b/tests/app/Census/CensusOfUnitedStates1860Test.php index 84e1e7b7a8..b8a0108042 100644 --- a/tests/app/Census/CensusOfUnitedStates1860Test.php +++ b/tests/app/Census/CensusOfUnitedStates1860Test.php @@ -57,30 +57,30 @@ class CensusOfUnitedStates1860Test extends \PHPUnit_Framework_TestCase { $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('Name', $columns[0]->abbreviation()); + $this->assertSame('Age', $columns[1]->abbreviation()); + $this->assertSame('Sex', $columns[2]->abbreviation()); + $this->assertSame('Color', $columns[3]->abbreviation()); + $this->assertSame('Occupation', $columns[4]->abbreviation()); + $this->assertSame('RE', $columns[5]->abbreviation()); + $this->assertSame('PE', $columns[6]->abbreviation()); + $this->assertSame('Birthplace', $columns[7]->abbreviation()); + $this->assertSame('Mar', $columns[8]->abbreviation()); + $this->assertSame('Sch', $columns[9]->abbreviation()); + $this->assertSame('R+W', $columns[10]->abbreviation()); + $this->assertSame('Infirm', $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()); + $this->assertSame('Name', $columns[0]->title()); + $this->assertSame('Age', $columns[1]->title()); + $this->assertSame('Sex', $columns[2]->title()); + $this->assertSame('White, black, or mulatto', $columns[3]->title()); + $this->assertSame('Profession, occupation, or trade', $columns[4]->title()); + $this->assertSame('Value of real estate owned', $columns[5]->title()); + $this->assertSame('Value of personal estate owned', $columns[6]->title()); + $this->assertSame('Place of birth, naming the state, territory, or country', $columns[7]->title()); + $this->assertSame('Married within the year', $columns[8]->title()); + $this->assertSame('Attended school within the year', $columns[9]->title()); + $this->assertSame('Persons over 20 years of age who cannot read and write', $columns[10]->title()); + $this->assertSame('Whether deaf and dumb, blind, insane, idiotic, pauper or convict', $columns[11]->title()); } } |
