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 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees\Census; 19 20use Fisharebest\Webtrees\Date; 21use Mockery; 22 23/** 24 * Test harness for the class CensusColumnMonthIfBornWithinYear 25 */ 26class CensusColumnMonthIfBornWithinYearTest extends \Fisharebest\Webtrees\TestCase 27{ 28 /** 29 * Delete mock objects 30 * 31 * @return void 32 */ 33 public function tearDown() 34 { 35 Mockery::close(); 36 } 37 38 /** 39 * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear 40 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 41 * 42 * @return void 43 */ 44 public function testBornWithinYear() 45 { 46 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 47 $individual->shouldReceive('getBirthDate')->andReturn(new Date('01 JAN 1860')); 48 49 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 50 $census->shouldReceive('censusDate')->andReturn('01 JUN 1860'); 51 52 $column = new CensusColumnMonthIfBornWithinYear($census, '', ''); 53 54 $this->assertSame('Jan', $column->generate($individual, $individual)); 55 } 56 57 /** 58 * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear 59 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 60 * 61 * @return void 62 */ 63 public function testBornOverYearBeforeTheCensus() 64 { 65 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 66 $individual->shouldReceive('getBirthDate')->andReturn(new Date('01 JAN 1859')); 67 68 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 69 $census->shouldReceive('censusDate')->andReturn('01 JUN 1860'); 70 71 $column = new CensusColumnMonthIfBornWithinYear($census, '', ''); 72 73 $this->assertSame('', $column->generate($individual, $individual)); 74 } 75 76 /** 77 * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear 78 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 79 * 80 * @return void 81 */ 82 public function testBornAfterTheCensus() 83 { 84 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 85 $individual->shouldReceive('getBirthDate')->andReturn(new Date('02 JUN 1860')); 86 87 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 88 $census->shouldReceive('censusDate')->andReturn('01 JUN 1860'); 89 90 91 $column = new CensusColumnMonthIfBornWithinYear($census, '', ''); 92 93 $this->assertSame('', $column->generate($individual, $individual)); 94 } 95 96 97 /** 98 * @covers \Fisharebest\Webtrees\Census\CensusColumnMonthIfBornWithinYear 99 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 100 * 101 * @return void 102 */ 103 public function testNoBirth() 104 { 105 $individual = Mockery::mock('Fisharebest\Webtrees\Individual'); 106 $individual->shouldReceive('getBirthDate')->andReturn(new Date('')); 107 108 $census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface'); 109 $census->shouldReceive('censusDate')->andReturn('01 JUN 1860'); 110 111 $column = new CensusColumnMonthIfBornWithinYear($census, '', ''); 112 113 $this->assertSame('', $column->generate($individual, $individual)); 114 } 115} 116