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