14c219c47SGreg Roach<?php 23976b470SGreg Roach 34c219c47SGreg Roach/** 44c219c47SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 64c219c47SGreg Roach * This program is free software: you can redistribute it and/or modify 74c219c47SGreg Roach * it under the terms of the GNU General Public License as published by 84c219c47SGreg Roach * the Free Software Foundation, either version 3 of the License, or 94c219c47SGreg Roach * (at your option) any later version. 104c219c47SGreg Roach * This program is distributed in the hope that it will be useful, 114c219c47SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 124c219c47SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 134c219c47SGreg Roach * GNU General Public License for more details. 144c219c47SGreg 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/>. 164c219c47SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 204c219c47SGreg Roachnamespace Fisharebest\Webtrees\Census; 214c219c47SGreg Roach 22ddf438a5SGreg Roachuse Fisharebest\Webtrees\Individual; 233cfcc809SGreg Roachuse Fisharebest\Webtrees\TestCase; 24*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass; 254c219c47SGreg Roach 26*202c018bSGreg Roach#[CoversClass(CensusColumnSexMK::class)] 27*202c018bSGreg Roach#[CoversClass(AbstractCensusColumn::class)] 283cfcc809SGreg Roachclass CensusColumnSexMKTest 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'); 344c219c47SGreg Roach 35cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 364c219c47SGreg Roach 374c219c47SGreg Roach $column = new CensusColumnSexMK($census, '', ''); 384c219c47SGreg Roach 395e933c21SGreg Roach self::assertSame('M', $column->generate($individual, $individual)); 404c219c47SGreg Roach } 414c219c47SGreg Roach 429b802b22SGreg Roach public function testFeale(): void 43c1010edaSGreg Roach { 44cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 450ecdbde6SGreg Roach $individual->method('sex')->willReturn('F'); 464c219c47SGreg Roach 47cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 484c219c47SGreg Roach 494c219c47SGreg Roach $column = new CensusColumnSexMK($census, '', ''); 504c219c47SGreg Roach 515e933c21SGreg Roach self::assertSame('K', $column->generate($individual, $individual)); 524c219c47SGreg Roach } 534c219c47SGreg Roach 549b802b22SGreg Roach public function testUnknownSex(): void 55c1010edaSGreg Roach { 56cd94ca66SGreg Roach $individual = $this->createMock(Individual::class); 570ecdbde6SGreg Roach $individual->method('sex')->willReturn('U'); 584c219c47SGreg Roach 59cd94ca66SGreg Roach $census = $this->createMock(CensusInterface::class); 604c219c47SGreg Roach 614c219c47SGreg Roach $column = new CensusColumnSexMK($census, '', ''); 624c219c47SGreg Roach 635e933c21SGreg Roach self::assertSame('', $column->generate($individual, $individual)); 644c219c47SGreg Roach } 654c219c47SGreg Roach} 66