1da3cb887Sglarwill<?php 2da3cb887Sglarwill 3da3cb887Sglarwill/** 4da3cb887Sglarwill * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6da3cb887Sglarwill * This program is free software: you can redistribute it and/or modify 7da3cb887Sglarwill * it under the terms of the GNU General Public License as published by 8da3cb887Sglarwill * the Free Software Foundation, either version 3 of the License, or 9da3cb887Sglarwill * (at your option) any later version. 10da3cb887Sglarwill * This program is distributed in the hope that it will be useful, 11da3cb887Sglarwill * but WITHOUT ANY WARRANTY; without even the implied warranty of 12da3cb887Sglarwill * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13da3cb887Sglarwill * GNU General Public License for more details. 14da3cb887Sglarwill * You should have received a copy of the GNU General Public License 15da3cb887Sglarwill * along with this program. If not, see <https://www.gnu.org/licenses/>. 16da3cb887Sglarwill */ 17da3cb887Sglarwill 18da3cb887Sglarwilldeclare(strict_types=1); 19da3cb887Sglarwill 20da3cb887Sglarwillnamespace Fisharebest\Webtrees\Census; 21da3cb887Sglarwill 22da3cb887Sglarwilluse Fisharebest\Webtrees\Date; 23da3cb887Sglarwilluse Fisharebest\Webtrees\Individual; 24da3cb887Sglarwilluse Fisharebest\Webtrees\TestCase; 25*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 26da3cb887Sglarwill 27*202c018bSGreg Roach#[CoversClass(CensusColumnAgeNextBirthDay::class)] 28*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 29da3cb887Sglarwillclass CensusColumnAgeNextBirthDayTest extends TestCase 30da3cb887Sglarwill{ 31da3cb887Sglarwill public function testGenerateColumn(): void 32da3cb887Sglarwill { 33cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 34da3cb887Sglarwill $individual->method('getEstimatedBirthDate')->willReturn(new Date('01 JAN 1800')); 35da3cb887Sglarwill 36cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 37da3cb887Sglarwill $census->method('censusDate')->willReturn('30 JUN 1832'); 38da3cb887Sglarwill 39da3cb887Sglarwill $column = new CensusColumnAgeNextBirthDay($census, '', ''); 40da3cb887Sglarwill 41da3cb887Sglarwill self::assertSame('33', $column->generate($individual, $individual)); 42da3cb887Sglarwill } 43da3cb887Sglarwill} 44