diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-01-04 15:35:30 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-01-04 15:35:30 +0000 |
| commit | 9b802b22a7b94d1d30e0433dd46fe641f3757505 (patch) | |
| tree | b6134111eeee61fa173c0c443122542b4be9134c /tests/app/Census/CensusColumnMotherForeignTest.php | |
| parent | 03bd29ea8404113f04278d95b6e8c519d53b162d (diff) | |
| download | webtrees-9b802b22a7b94d1d30e0433dd46fe641f3757505.tar.gz webtrees-9b802b22a7b94d1d30e0433dd46fe641f3757505.tar.bz2 webtrees-9b802b22a7b94d1d30e0433dd46fe641f3757505.zip | |
Tests
Diffstat (limited to 'tests/app/Census/CensusColumnMotherForeignTest.php')
| -rw-r--r-- | tests/app/Census/CensusColumnMotherForeignTest.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/app/Census/CensusColumnMotherForeignTest.php b/tests/app/Census/CensusColumnMotherForeignTest.php index 75d12434c5..a8384b6386 100644 --- a/tests/app/Census/CensusColumnMotherForeignTest.php +++ b/tests/app/Census/CensusColumnMotherForeignTest.php @@ -58,7 +58,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testSameCountry() + public function testSameCountry(): void { $mother = Mockery::mock(Individual::class); $mother->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('London, England')); @@ -83,7 +83,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testDifferentCountry() + public function testDifferentCountry(): void { $mother = Mockery::mock(Individual::class); $mother->shouldReceive('getBirthPlace')->andReturn($this->getPlaceMock('London, England')); @@ -108,7 +108,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testPlaceNoParent() + public function testPlaceNoParent(): void { $family = Mockery::mock(Family::class); $family->shouldReceive('getWife')->andReturn(null); @@ -130,7 +130,7 @@ class CensusColumnMotherForeignTest extends \Fisharebest\Webtrees\TestCase * * @return void */ - public function testPlaceNoParentFamily() + public function testPlaceNoParentFamily(): void { $individual = Mockery::mock(Individual::class); $individual->shouldReceive('getPrimaryChildFamily')->andReturn(null); |
