1a53db70dSGreg Roach<?php 23976b470SGreg Roach 3a53db70dSGreg Roach/** 4a53db70dSGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 6a53db70dSGreg Roach * This program is free software: you can redistribute it and/or modify 7a53db70dSGreg Roach * it under the terms of the GNU General Public License as published by 8a53db70dSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9a53db70dSGreg Roach * (at your option) any later version. 10a53db70dSGreg Roach * This program is distributed in the hope that it will be useful, 11a53db70dSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12a53db70dSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13a53db70dSGreg Roach * GNU General Public License for more details. 14a53db70dSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16a53db70dSGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 20a53db70dSGreg Roachnamespace Fisharebest\Webtrees\Census; 21a53db70dSGreg Roach 22ddf438a5SGreg Roachuse Fisharebest\Webtrees\Individual; 233cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 24*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 25a53db70dSGreg Roach 26*202c018bSGreg Roach#[CoversClass(CensusColumnGivenNames::class)] 27*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 283cfcc809SGreg Roachclass CensusColumnGivenNamesTest extends TestCase 29c1010edaSGreg Roach{ 309b802b22SGreg Roach public function testGivenNames(): void 31c1010edaSGreg Roach { 32cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 330ecdbde6SGreg Roach $individual->method('getAllNames')->willReturn([['givn' => 'Joe']]); 34a53db70dSGreg Roach 35cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 36a53db70dSGreg Roach 37a53db70dSGreg Roach $column = new CensusColumnGivenNames($census, '', ''); 38a53db70dSGreg Roach 395e933c21SGreg Roach self::assertSame('Joe', $column->generate($individual, $individual)); 40a53db70dSGreg Roach } 41a53db70dSGreg Roach 429b802b22SGreg Roach public function testNoName(): void 43c1010edaSGreg Roach { 44cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 450ecdbde6SGreg Roach $individual->method('getAllNames')->willReturn([]); 46a53db70dSGreg Roach 47cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 48a53db70dSGreg Roach 49a53db70dSGreg Roach $column = new CensusColumnGivenNames($census, '', ''); 50a53db70dSGreg Roach 515e933c21SGreg Roach self::assertSame('', $column->generate($individual, $individual)); 52a53db70dSGreg Roach } 53a53db70dSGreg Roach} 54