xref: /webtrees/tests/app/Census/CensusColumnSexMFTest.php (revision 3e983931fdde6db78f1490364106d7d46e77dea7)
1a53db70dSGreg Roach<?php
2a53db70dSGreg Roach
3a53db70dSGreg Roach/**
4a53db70dSGreg Roach * webtrees: online genealogy
56bdf7674SGreg Roach * Copyright (C) 2017 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
15a53db70dSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
16a53db70dSGreg Roach */
17a53db70dSGreg Roachnamespace Fisharebest\Webtrees\Census;
18a53db70dSGreg Roach
19a53db70dSGreg Roachuse Mockery;
20a53db70dSGreg Roach
21a53db70dSGreg Roach/**
22a53db70dSGreg Roach * Test harness for the class CensusColumnSexMF
23a53db70dSGreg Roach */
24*3e983931SGreg Roachclass CensusColumnSexMFTest extends \PHPUnit\Framework\TestCase {
25a53db70dSGreg Roach	/**
26a53db70dSGreg Roach	 * Delete mock objects
27a53db70dSGreg Roach	 */
28a53db70dSGreg Roach	public function tearDown() {
29a53db70dSGreg Roach		Mockery::close();
30a53db70dSGreg Roach	}
31a53db70dSGreg Roach
32a53db70dSGreg Roach	/**
3315d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF
3415d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
35a53db70dSGreg Roach	 */
36a53db70dSGreg Roach	public function testMale() {
37c314ecc9SGreg Roach		$individual = Mockery::mock('Fisharebest\Webtrees\Individual');
38a53db70dSGreg Roach		$individual->shouldReceive('getSex')->andReturn('M');
39a53db70dSGreg Roach
40c314ecc9SGreg Roach		$census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
41a53db70dSGreg Roach
42a53db70dSGreg Roach		$column = new CensusColumnSexMF($census, '', '');
43a53db70dSGreg Roach
44a53db70dSGreg Roach		$this->assertSame('M', $column->generate($individual));
45a53db70dSGreg Roach	}
46a53db70dSGreg Roach
47a53db70dSGreg Roach	/**
4815d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF
4915d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
50a53db70dSGreg Roach	 */
51a53db70dSGreg Roach	public function testFeale() {
52c314ecc9SGreg Roach		$individual = Mockery::mock('Fisharebest\Webtrees\Individual');
53a53db70dSGreg Roach		$individual->shouldReceive('getSex')->andReturn('F');
54a53db70dSGreg Roach
55c314ecc9SGreg Roach		$census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
56a53db70dSGreg Roach
57a53db70dSGreg Roach		$column = new CensusColumnSexMF($census, '', '');
58a53db70dSGreg Roach
59a53db70dSGreg Roach		$this->assertSame('F', $column->generate($individual));
60a53db70dSGreg Roach	}
61a53db70dSGreg Roach
62a53db70dSGreg Roach	/**
6315d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\CensusColumnSexMF
6415d603e7SGreg Roach	 * @covers \Fisharebest\Webtrees\Census\AbstractCensusColumn
65a53db70dSGreg Roach	 */
66a53db70dSGreg Roach	public function testUnknownSex() {
67c314ecc9SGreg Roach		$individual = Mockery::mock('Fisharebest\Webtrees\Individual');
68a53db70dSGreg Roach		$individual->shouldReceive('getSex')->andReturn('U');
69a53db70dSGreg Roach
70c314ecc9SGreg Roach		$census = Mockery::mock('Fisharebest\Webtrees\Census\CensusInterface');
71a53db70dSGreg Roach
72a53db70dSGreg Roach		$column = new CensusColumnSexMF($census, '', '');
73a53db70dSGreg Roach
74a53db70dSGreg Roach		$this->assertSame('', $column->generate($individual));
75a53db70dSGreg Roach	}
76a53db70dSGreg Roach}
77