Continued drafting of fullpersonname

This commit is contained in:
Kevin Frantz
2018-11-10 13:09:18 +01:00
parent c1b073eba8
commit e57fd22f78
10 changed files with 133 additions and 24 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace tests\unit\Entity\Source\Combination;
use PHPUnit\Framework\TestCase;
use App\Entity\Source\Data\PersonIdentitySourceInterface;
use App\Entity\Source\Data\PersonIdentitySource;
use App\Entity\Source\Combination\FullPersonNameSourceInterface;
class PersonIdentitySourceTest extends TestCase
{
/**
* @var PersonIdentitySourceInterface
*/
public $identitySource;
public function setUp(): void
{
$this->userSource = new PersonIdentitySource();
}
public function testConstructor(): void
{
$this->assertInstanceOf(FullPersonNameSourceInterface::class, $this->identitySource->getFullPersonNameSource());
}
}