. */ use Fisharebest\Webtrees\SurnameTradition\PortugueseSurnameTradition; use Fisharebest\Webtrees\SurnameTradition\SurnameTraditionInterface; /** * Test harness for the class SpanishSurnameTradition */ class PortugueseSurnameTraditionTest extends PHPUnit_Framework_TestCase { /** @var SurnameTraditionInterface */ private $surname_tradition; /** * Prepare the environment for these tests */ public function setUp() { $this->surname_tradition = new PortugueseSurnameTradition; } /** * Test whether married surnames are used */ public function testMarriedSurnames() { $this->assertSame(false, $this->surname_tradition->hasMarriedNames()); } /** * Test whether surnames are used */ public function testSurnames() { $this->assertSame(true, $this->surname_tradition->hasSurnames()); } /** * Test new son names */ public function testNewSonNames() { $this->assertSame( array('NAME' => '/Iglesias/ /Lorca/', 'SURN' => 'Iglesias,Lorca'), $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') ); } /** * Test new daughter names */ public function testNewDaughterNames() { $this->assertSame( array('NAME' => '/Iglesias/ /Lorca/', 'SURN' => 'Iglesias,Lorca'), $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') ); } /** * Test new child names */ public function testNewChildNames() { $this->assertSame( array('NAME' => '/Iglesias/ /Lorca/', 'SURN' => 'Iglesias,Lorca'), $this->surname_tradition->newChildNames('Gabriel /Garcia/ /Iglesias/', 'Maria /Ruiz/ /Lorca/', 'M') ); } /** * Test new child names */ public function testNewChildNamesCompunds() { $this->assertSame( array('NAME' => '/Iglesias/ /Lorca/', 'SURN' => 'Iglesias,Lorca'), $this->surname_tradition->newChildNames('Gabriel /Garcia Iglesias/', 'Maria /Ruiz Lorca/', 'M') ); $this->assertSame( array('NAME' => '/Iglesias/ /Lorca/', 'SURN' => 'Iglesias,Lorca'), $this->surname_tradition->newChildNames('Gabriel /Garcia y Iglesias/', 'Maria /Ruiz y Lorca/', 'M') ); } /** * Test new father names */ public function testNewFatherNames() { $this->assertSame( array('NAME' => '// /Garcia/', 'SURN' => 'Garcia'), $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'M') ); } /** * Test new mother names */ public function testNewMotherNames() { $this->assertSame( array('NAME' => '// /Iglesias/', 'SURN' => 'Iglesias'), $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'F') ); } /** * Test new parent names */ public function testNewParentNames() { $this->assertSame( array('NAME' => '// //'), $this->surname_tradition->newParentNames('Gabriel /Garcia/ /Iglesias/', 'U') ); } /** * Test new husband names */ public function testNewHusbandNames() { $this->assertSame( array('NAME' => '// //'), $this->surname_tradition->newSpouseNames('Maria /Ruiz/ /Lorca/', 'M') ); } /** * Test new wife names */ public function testNewWifeNames() { $this->assertSame( array('NAME' => '// //'), $this->surname_tradition->newSpouseNames('Gabriel /Garcia/ /Iglesias/', 'F') ); } /** * Test new spouse names */ public function testNewSpouseNames() { $this->assertSame( array('NAME' => '// //'), $this->surname_tradition->newSpouseNames('Gabriel /Garcia/ /Iglesias/', 'U') ); } }