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