13d2c98d1SGreg Roach<?php 23d2c98d1SGreg Roach 33d2c98d1SGreg Roach/** 43d2c98d1SGreg Roach * webtrees: online genealogy 55bfc6897SGreg Roach * Copyright (C) 2022 webtrees development team 63d2c98d1SGreg Roach * This program is free software: you can redistribute it and/or modify 73d2c98d1SGreg Roach * it under the terms of the GNU General Public License as published by 83d2c98d1SGreg Roach * the Free Software Foundation, either version 3 of the License, or 93d2c98d1SGreg Roach * (at your option) any later version. 103d2c98d1SGreg Roach * This program is distributed in the hope that it will be useful, 113d2c98d1SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 123d2c98d1SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 133d2c98d1SGreg Roach * GNU General Public License for more details. 143d2c98d1SGreg Roach * You should have received a copy of the GNU General Public License 153d2c98d1SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 163d2c98d1SGreg Roach */ 173d2c98d1SGreg Roach 183d2c98d1SGreg Roachdeclare(strict_types=1); 193d2c98d1SGreg Roach 203d2c98d1SGreg Roachnamespace Fisharebest\Webtrees\Elements; 213d2c98d1SGreg Roach 22*d4af76c4SGreg Roachuse Fisharebest\Webtrees\Tree; 23*d4af76c4SGreg Roach 243d2c98d1SGreg Roach/** 253d2c98d1SGreg Roach * Test harness for the class AgeAtEvent 263d2c98d1SGreg Roach * 273d2c98d1SGreg Roach * @covers \Fisharebest\Webtrees\Elements\AbstractElement 283d2c98d1SGreg Roach * @covers \Fisharebest\Webtrees\Elements\AgeAtEvent 293d2c98d1SGreg Roach */ 303d2c98d1SGreg Roachclass AgeAtEventTest extends AbstractElementTest 313d2c98d1SGreg Roach{ 323d2c98d1SGreg Roach /** 333d2c98d1SGreg Roach * Standard tests for all elements. 343d2c98d1SGreg Roach */ 353d2c98d1SGreg Roach public static function setupBeforeClass(): void 363d2c98d1SGreg Roach { 373d2c98d1SGreg Roach parent::setUpBeforeClass(); 383d2c98d1SGreg Roach 393d2c98d1SGreg Roach self::$element = new AgeAtEvent('label'); 403d2c98d1SGreg Roach } 413d2c98d1SGreg Roach 423d2c98d1SGreg Roach /** 433d2c98d1SGreg Roach * @return void 443d2c98d1SGreg Roach */ 453d2c98d1SGreg Roach public function testCanonical(): void 463d2c98d1SGreg Roach { 476e60786aSGreg Roach self::assertSame('CHILD', self::$element->canonical('cHiLd')); 486e60786aSGreg Roach self::assertSame('INFANT', self::$element->canonical('iNfAnT ')); 496e60786aSGreg Roach self::assertSame('STILLBORN', self::$element->canonical(' sTiLlBoRn')); 50*d4af76c4SGreg Roach self::assertSame('FISH', self::$element->canonical('fIsH')); 51*d4af76c4SGreg Roach self::assertSame('1Y 2M 3D', self::$element->canonical('1Y 2M 3D')); 52*d4af76c4SGreg Roach } 53*d4af76c4SGreg Roach 54*d4af76c4SGreg Roach /** 55*d4af76c4SGreg Roach * @return void 56*d4af76c4SGreg Roach */ 57*d4af76c4SGreg Roach public function testValue(): void 58*d4af76c4SGreg Roach { 59*d4af76c4SGreg Roach $tree = $this->createStub(Tree::class); 60*d4af76c4SGreg Roach 61*d4af76c4SGreg Roach self::assertSame('child', self::$element->value('cHiLd', $tree)); 62*d4af76c4SGreg Roach self::assertSame('infant', self::$element->value('iNfAnT ', $tree)); 63*d4af76c4SGreg Roach self::assertSame('stillborn', self::$element->value(' sTiLlBoRn', $tree)); 64*d4af76c4SGreg Roach self::assertSame('FISH', self::$element->value('fIsH', $tree)); 65*d4af76c4SGreg Roach self::assertSame('1 year 2 months 3 days', self::$element->value('1Y 2M 3D', $tree)); 663d2c98d1SGreg Roach } 673d2c98d1SGreg Roach} 68