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(CensusColumnSexMF::class)] 27*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 283cfcc809SGreg Roachclass CensusColumnSexMFTest extends TestCase 29c1010edaSGreg Roach{ 309b802b22SGreg Roach public function testMale(): void 31c1010edaSGreg Roach { 32cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 330ecdbde6SGreg Roach $individual->method('sex')->willReturn('M'); 34a53db70dSGreg Roach 35cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 36a53db70dSGreg Roach 37a53db70dSGreg Roach $column = new CensusColumnSexMF($census, '', ''); 38a53db70dSGreg Roach 395e933c21SGreg Roach self::assertSame('M', $column->generate($individual, $individual)); 40a53db70dSGreg Roach } 41a53db70dSGreg Roach 429b802b22SGreg Roach public function testFeale(): void 43c1010edaSGreg Roach { 44cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 450ecdbde6SGreg Roach $individual->method('sex')->willReturn('F'); 46a53db70dSGreg Roach 47cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 48a53db70dSGreg Roach 49a53db70dSGreg Roach $column = new CensusColumnSexMF($census, '', ''); 50a53db70dSGreg Roach 515e933c21SGreg Roach self::assertSame('F', $column->generate($individual, $individual)); 52a53db70dSGreg Roach } 53a53db70dSGreg Roach 549b802b22SGreg Roach public function testUnknownSex(): void 55c1010edaSGreg Roach { 56cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 570ecdbde6SGreg Roach $individual->method('sex')->willReturn('U'); 58a53db70dSGreg Roach 59cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 60a53db70dSGreg Roach 61a53db70dSGreg Roach $column = new CensusColumnSexMF($census, '', ''); 62a53db70dSGreg Roach 635e933c21SGreg Roach self::assertSame('', $column->generate($individual, $individual)); 64a53db70dSGreg Roach } 65a53db70dSGreg Roach} 66