1ef21b467SGreg Roach<?php 2ef21b467SGreg Roach/** 3ef21b467SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 5ef21b467SGreg Roach * This program is free software: you can redistribute it and/or modify 6ef21b467SGreg Roach * it under the terms of the GNU General Public License as published by 7ef21b467SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8ef21b467SGreg Roach * (at your option) any later version. 9ef21b467SGreg Roach * This program is distributed in the hope that it will be useful, 10ef21b467SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11ef21b467SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12ef21b467SGreg Roach * GNU General Public License for more details. 13ef21b467SGreg Roach * You should have received a copy of the GNU General Public License 14ef21b467SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15ef21b467SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 18ef21b467SGreg Roachnamespace Fisharebest\Webtrees\Census; 19ef21b467SGreg Roach 20ddf438a5SGreg Roachuse Fisharebest\Webtrees\Individual; 21ef21b467SGreg Roach 22ef21b467SGreg Roach/** 23ef21b467SGreg Roach * Test harness for the class CensusColumnRelationToHead 24ef21b467SGreg Roach */ 2584e2cf4eSGreg Roachclass CensusColumnRelationToHeadTest extends \Fisharebest\Webtrees\TestCase 26c1010edaSGreg Roach{ 27ef21b467SGreg Roach /** 2815d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\CensusColumnRelationToHead 2915d603e7SGreg Roach * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn 3052348eb8SGreg Roach * 3152348eb8SGreg Roach * @return void 32ef21b467SGreg Roach */ 339b802b22SGreg Roach public function testNull(): void 34c1010edaSGreg Roach { 35*0ecdbde6SGreg Roach $individual = $this->createMock(Individual::class); 36ef21b467SGreg Roach 37*0ecdbde6SGreg Roach $census = $this->createMock(CensusInterface::class); 38ef21b467SGreg Roach 39ef21b467SGreg Roach $column = new CensusColumnRelationToHead($census, '', ''); 40ef21b467SGreg Roach 41342dcecdSGreg Roach $this->assertSame('head', $column->generate($individual, $individual)); 42ef21b467SGreg Roach } 43ef21b467SGreg Roach} 44