mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Implemented test and constructor for FullPersonNameSource
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
namespace tests\unit\Entity\Source\Combination;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use App\Entity\Source\Combination\FullPersonNameSourceInterface;
|
||||
use App\Entity\Source\Combination\FullPersonNameSource;
|
||||
use App\Entity\Source\Data\Name\SurnameSourceInterface;
|
||||
use App\Entity\Source\Data\Name\FirstNameSourceInterface;
|
||||
|
||||
class FullPersonNameSourceTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var FullPersonNameSourceInterface
|
||||
*/
|
||||
protected $name;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->name = new FullPersonNameSource();
|
||||
}
|
||||
|
||||
public function testConstructor(): void
|
||||
{
|
||||
$this->assertInstanceOf(SurnameSourceInterface::class, $this->name->getSurnameSource());
|
||||
$this->assertInstanceOf(FirstNameSourceInterface::class, $this->name->getFirstNameSource());
|
||||
}
|
||||
|
||||
public function testFirstNameAccessor(): void
|
||||
{
|
||||
$name = $this->createMock(FirstNameSourceInterface::class);
|
||||
$this->assertNull($this->name->setFirstNameSource($name));
|
||||
$this->assertEquals($name, $this->name->getFirstNameSource());
|
||||
}
|
||||
|
||||
public function testSurnameAccessor(): void
|
||||
{
|
||||
$name = $this->createMock(SurnameSourceInterface::class);
|
||||
$this->assertNull($this->name->setSurnameSource($name));
|
||||
$this->assertEquals($name, $this->name->getSurnameSource());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user