xref: /webtrees/tests/app/SurnameTradition/IcelandicSurnameTraditionTest.php (revision a3dfb74c4b54f62175154060c9dc7b224ed9bd97)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2015 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17use Fisharebest\Webtrees\SurnameTradition\IcelandicSurnameTradition;
18use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface;
19
20/**
21 * Test harness for the class SpanishSurnameTradition
22 */
23class IcelandicSurnameTraditionTest extends PHPUnit_Framework_TestCase {
24	/** @var SurnameTraditionInterface */
25	private $surname_tradition;
26
27	/**
28	 * Prepare the environment for these tests
29	 */
30	public function setUp() {
31		$this->surname_tradition = new IcelandicSurnameTradition;
32	}
33
34	/**
35	 * Test whether married surnames are used
36	 */
37	public function testMarriedSurnames() {
38		$this->assertSame(false, $this->surname_tradition->hasMarriedNames());
39	}
40
41	/**
42	 * Test whether surnames are used
43	 */
44	public function testSurnames() {
45		$this->assertSame(false, $this->surname_tradition->hasSurnames());
46	}
47
48	/**
49	 * Test new son names
50	 */
51	public function testNewSonNames() {
52		$this->assertSame(
53			array('NAME' => 'Jonsson'),
54			$this->surname_tradition->newChildNames('Jon Einarsson', 'Eva Stefansdottir', 'M')
55		);
56	}
57
58	/**
59	 * Test new daughter names
60	 */
61	public function testNewDaughterNames() {
62		$this->assertSame(
63			array('NAME' => 'Jonsdottir'),
64			$this->surname_tradition->newChildNames('Jon Einarsson', 'Eva Stefansdottir', 'F')
65		);
66	}
67
68	/**
69	 * Test new child names
70	 */
71	public function testNewChildNames() {
72		$this->assertSame(
73			array(),
74			$this->surname_tradition->newChildNames('Jon Einarsson', 'Eva Stefansdottir', 'U')
75		);
76	}
77
78	/**
79	 * Test new father names
80	 */
81	public function testNewFatherNames() {
82		$this->assertSame(
83			array('NAME' => 'Einar', 'GIVN' => 'Einar'),
84			$this->surname_tradition->newParentNames('Jon Einarsson', 'M')
85		);
86	}
87
88	/**
89	 * Test new mother names
90	 */
91	public function testNewMotherNames() {
92		$this->assertSame(
93			array(),
94			$this->surname_tradition->newParentNames('Jon Einarsson', 'F')
95		);
96	}
97
98	/**
99	 * Test new parent names
100	 */
101	public function testNewParentNames() {
102		$this->assertSame(
103			array(),
104			$this->surname_tradition->newParentNames('Jon Einarsson', 'U')
105		);
106	}
107
108	/**
109	 * Test new husband names
110	 */
111	public function testNewHusbandNames() {
112		$this->assertSame(
113			array(),
114			$this->surname_tradition->newSpouseNames('Eva Stefansdottir', 'M')
115		);
116	}
117
118	/**
119	 * Test new wife names
120	 */
121	public function testNewWifeNames() {
122		$this->assertSame(
123			array(),
124			$this->surname_tradition->newSpouseNames('Jon Einarsson', 'F')
125		);
126	}
127
128	/**
129	 * Test new spouse names
130	 */
131	public function testNewSpouseNames() {
132		$this->assertSame(
133			array(),
134			$this->surname_tradition->newSpouseNames('Jon Einarsson', 'U')
135		);
136	}
137}
138