mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Solved unit tests
This commit is contained in:
@@ -3,13 +3,13 @@
|
||||
namespace tests\unit\Entity\Source\Data;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use App\Entity\Source\Data\NameSourceInterface;
|
||||
use App\Entity\Source\Data\NameSource;
|
||||
use App\Entity\Source\Data\Name\NameSourceInterface;
|
||||
use App\Entity\Source\Data\Name\AbstractNameSource;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class NameSourceTest extends TestCase
|
||||
class AbstractNameSourceTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var NameSourceInterface
|
||||
@@ -18,7 +18,8 @@ class NameSourceTest extends TestCase
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->nameSource = new NameSource();
|
||||
$this->nameSource = new class() extends AbstractNameSource {
|
||||
};
|
||||
}
|
||||
|
||||
public function testConstructor(): void
|
@@ -1,33 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace tests\unit\Entity\Source\Data;
|
||||
|
||||
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
|
||||
*/
|
||||
protected $identity;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->identity = new PersonIdentitySource();
|
||||
}
|
||||
|
||||
public function testConstructor(): void
|
||||
{
|
||||
$this->assertInstanceOf(FullPersonNameSourceInterface::class, $this->identity->getName());
|
||||
}
|
||||
|
||||
public function testFullName(): void
|
||||
{
|
||||
$name = $this->createMock(FullPersonNameSourceInterface::class);
|
||||
$this->assertNull($this->identity->setName($name));
|
||||
$this->assertEquals($name, $this->identity->getName());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user