2018-10-31 23:11:34 +01:00
|
|
|
<?php
|
|
|
|
|
2019-01-20 10:41:58 +01:00
|
|
|
namespace App\Tests\Unit\Attribut;
|
2018-10-31 23:11:34 +01:00
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
2018-11-25 23:38:22 +01:00
|
|
|
use App\Entity\Meta\Relation\RelationInterface;
|
2019-01-20 10:41:58 +01:00
|
|
|
use App\Attribut\RelationAttributInterface;
|
|
|
|
use App\Attribut\RelationAttribut;
|
2018-10-31 23:11:34 +01:00
|
|
|
|
|
|
|
class RelationAttributTest extends TestCase
|
|
|
|
{
|
|
|
|
/***
|
|
|
|
* @var RelationAttributInterface
|
|
|
|
*/
|
|
|
|
protected $relationAttribut;
|
|
|
|
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
$this->relationAttribut = new class() implements RelationAttributInterface {
|
|
|
|
use RelationAttribut;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAccessors(): void
|
|
|
|
{
|
|
|
|
$relation = $this->createMock(RelationInterface::class);
|
|
|
|
$this->assertNull($this->relationAttribut->setRelation($relation));
|
|
|
|
$this->assertEquals($relation, $this->relationAttribut->getRelation());
|
|
|
|
}
|
|
|
|
}
|