1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2018 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17namespace Fisharebest\Webtrees\Census; 18 19use Fisharebest\Webtrees\Date; 20use Mockery; 21 22/** 23 * Test harness for the class CensusColumnChildrenLiving 24 */ 25class CensusColumnChildrenLivingTest extends \PHPUnit\Framework\TestCase 26{ 27 /** 28 * Delete mock objects 29 */ 30 public function tearDown() 31 { 32 Mockery::close(); 33 } 34 35 /** 36 * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenLiving 37 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 38 */ 39 public function testMale() 40 { 41 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 42 $individual->shouldReceive('getSex')->andReturn('M'); 43 44 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 45 46 $column = new CensusColumnChildrenLiving($census, '', ''); 47 48 $this->assertSame('', $column->generate($individual)); 49 } 50 51 /** 52 * @covers \Fisharebest\Webtrees\Census\CensusColumnChildrenLiving 53 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 54 */ 55 public function testCountChildren() 56 { 57 // Stillborn 58 $child1 = Mockery::mock('Fisharebest\Webtrees\Individual'); 59 $child1->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904')); 60 $child1->shouldReceive('getDeathDate')->andReturn(new Date('01 FEB 1904')); 61 62 // Died after census 63 $child2 = Mockery::mock('Fisharebest\Webtrees\Individual'); 64 $child2->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904')); 65 $child2->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1912')); 66 67 // Died before census 68 $child3 = Mockery::mock('Fisharebest\Webtrees\Individual'); 69 $child3->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904')); 70 $child3->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1910')); 71 72 // Still living 73 $child4 = Mockery::mock('Fisharebest\Webtrees\Individual'); 74 $child4->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904')); 75 $child4->shouldReceive('getDeathDate')->andReturn(new Date('')); 76 77 $family = Mockery::mock('Fisharebest\Webtrees\Family'); 78 $family->shouldReceive('getChildren')->andReturn([ 79 $child1, 80 $child2, 81 $child3, 82 $child4, 83 ]); 84 85 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 86 $individual->shouldReceive('getSex')->andReturn('F'); 87 $individual->shouldReceive('getSpouseFamilies')->andReturn([$family]); 88 89 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 90 $census->shouldReceive('censusDate')->andReturn('30 MAR 1911'); 91 92 $column = new CensusColumnChildrenLiving($census, '', ''); 93 94 $this->assertSame('2', $column->generate($individual)); 95 } 96} 97