1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2015 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 */ 17 18namespace Fisharebest\Webtrees\Census; 19 20use Fisharebest\Webtrees\Date; 21use Fisharebest\Webtrees\Family; 22use Fisharebest\Webtrees\Individual; 23use Mockery; 24 25/** 26 * Test harness for the class CensusColumnChildrenDied 27 */ 28class CensusColumnChildrenDiedTest extends \PHPUnit_Framework_TestCase { 29 /** 30 * Delete mock objects 31 */ 32 public function tearDown() { 33 Mockery::close(); 34 } 35 36 /** 37 * @covers Fisharebest\Webtrees\Census\CensusColumnChildrenDied 38 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn 39 */ 40 public function testMale() { 41 $individual = Mockery::mock(Individual::class); 42 $individual->shouldReceive('getSex')->andReturn('M'); 43 44 $census = Mockery::mock(CensusInterface::class); 45 46 $column = new CensusColumnChildrenDied($census, '', ''); 47 48 $this->assertSame('', $column->generate($individual)); 49 } 50 51 /** 52 * @covers Fisharebest\Webtrees\Census\CensusColumnChildrenDied 53 * @covers Fisharebest\Webtrees\Census\AbstractCensusColumn 54 */ 55 public function testCountChildren() { 56 // Stillborn 57 $child1 = Mockery::mock(Individual::class); 58 $child1->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904')); 59 $child1->shouldReceive('getDeathDate')->andReturn(new Date('01 FEB 1904')); 60 61 // Died after census 62 $child2 = Mockery::mock(Individual::class); 63 $child2->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904')); 64 $child2->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1912')); 65 66 // Died before census 67 $child3 = Mockery::mock(Individual::class); 68 $child3->shouldReceive('getBirthDate')->andReturn(new Date('02 FEB 1904')); 69 $child3->shouldReceive('getDeathDate')->andReturn(new Date('20 DEC 1910')); 70 71 // Still living 72 $child4 = Mockery::mock(Individual::class); 73 $child4->shouldReceive('getBirthDate')->andReturn(new Date('01 FEB 1904')); 74 $child4->shouldReceive('getDeathDate')->andReturn(new Date('')); 75 76 $family = Mockery::mock(Family::class); 77 $family->shouldReceive('getChildren')->andReturn([$child1, $child2, $child3, $child4]); 78 79 $individual = Mockery::mock(Individual::class); 80 $individual->shouldReceive('getSex')->andReturn('F'); 81 $individual->shouldReceive('getSpouseFamilies')->andReturn([$family]); 82 83 $census = Mockery::mock(CensusInterface::class); 84 $census->shouldReceive('censusDate')->andReturn('30 MAR 1911'); 85 86 $column = new CensusColumnChildrenDied($census, '', ''); 87 88 $this->assertSame('1', $column->generate($individual)); 89 } 90} 91