infinito/application/symfony/tests/Unit/Attribut/NameSourceAttributTest.php

37 lines
934 B
PHP
Raw Normal View History

<?php
2019-01-20 10:41:58 +01:00
namespace tests\unit\Attribut;
use PHPUnit\Framework\TestCase;
use Infinito\Attribut\NameSourceAttributInterface;
use Infinito\Attribut\NameSourceAttribut;
use Infinito\Entity\Source\Primitive\Name\NameSourceInterface;
class NameSourceAttributTest extends TestCase
{
/**
* @var NameSourceAttributInterface
*/
protected $name;
public function setUp(): void
{
$this->name = new class() implements NameSourceAttributInterface {
use NameSourceAttribut;
};
}
public function testConstructor(): void
{
$this->expectException(\TypeError::class);
$this->name->getNameSource();
}
public function testAccessors(): void
{
$nameSource = $this->createMock(NameSourceInterface::class);
$this->assertNull($this->name->setNameSource($nameSource));
$this->assertEquals($nameSource, $this->name->getNameSource());
}
}