xref: /webtrees/tests/app/Census/CensusColumnRelationToHeadTest.php (revision 8fcd0d32e56ee262912bbdb593202cfd1cbc1615)
1ef21b467SGreg Roach<?php
2ef21b467SGreg Roach/**
3ef21b467SGreg Roach * webtrees: online genealogy
4*8fcd0d32SGreg 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 Roachuse Mockery;
22ef21b467SGreg Roach
23ef21b467SGreg Roach/**
24ef21b467SGreg Roach * Test harness for the class CensusColumnRelationToHead
25ef21b467SGreg Roach */
2684e2cf4eSGreg Roachclass CensusColumnRelationToHeadTest extends \Fisharebest\Webtrees\TestCase
27c1010edaSGreg Roach{
28ef21b467SGreg Roach    /**
29ef21b467SGreg Roach     * Delete mock objects
3052348eb8SGreg Roach     *
3152348eb8SGreg Roach     * @return void
32ef21b467SGreg Roach     */
33c1010edaSGreg Roach    public function tearDown()
34c1010edaSGreg Roach    {
35ef21b467SGreg Roach        Mockery::close();
36ef21b467SGreg Roach    }
37ef21b467SGreg Roach
38ef21b467SGreg Roach    /**
3915d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\CensusColumnRelationToHead
4015d603e7SGreg Roach     * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
4152348eb8SGreg Roach     *
4252348eb8SGreg Roach     * @return void
43ef21b467SGreg Roach     */
44c1010edaSGreg Roach    public function testNull()
45c1010edaSGreg Roach    {
46ddf438a5SGreg Roach        $individual = Mockery::mock(Individual::class);
47ef21b467SGreg Roach
48ddf438a5SGreg Roach        $census = Mockery::mock(CensusInterface::class);
49ef21b467SGreg Roach
50ef21b467SGreg Roach        $column = new CensusColumnRelationToHead($census, '', '');
51ef21b467SGreg Roach
52342dcecdSGreg Roach        $this->assertSame('head', $column->generate($individual, $individual));
53ef21b467SGreg Roach    }
54ef21b467SGreg Roach}
55