summaryrefslogtreecommitdiff
path: root/tests/app/Census/CensusColumnMotherForeignTest.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-01-04 15:35:30 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-01-04 15:35:30 +0000
commit9b802b22a7b94d1d30e0433dd46fe641f3757505 (patch)
treeb6134111eeee61fa173c0c443122542b4be9134c /tests/app/Census/CensusColumnMotherForeignTest.php
parent03bd29ea8404113f04278d95b6e8c519d53b162d (diff)
downloadwebtrees-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.php8
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);