. */ namespace Fisharebest\Webtrees\Census; use Mockery; /** * Test harness for the class CensusColumnMotherBirthPlaceSimple */ class CensusColumnMotherBirthPlaceSimpleTest extends \PHPUnit_Framework_TestCase { /** * Delete mock objects */ public function tearDown() { Mockery::close(); } /** * @covers Fisharebest\Webtrees\Census\CensusColumnMotherBirthPlaceSimple * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn */ public function testKnownStateAndTown() { $father = Mockery::mock('Fisharebest\Webtrees\Individual'); $father->shouldReceive('getBirthPlace')->andReturn('Miami, Florida, United States'); $family = Mockery::mock('Fisharebest\Webtrees\Family'); $family->shouldReceive('getWife')->andReturn($father); $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); $individual->shouldReceive('getPrimaryChildFamily')->andReturn($family); $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); $census->shouldReceive('censusPlace')->andReturn('United States'); $column = new CensusColumnMotherBirthPlaceSimple($census, '', ''); $this->assertSame('Florida', $column->generate($individual)); } }