mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
31 lines
804 B
PHP
31 lines
804 B
PHP
<?php
|
|
|
|
namespace App\Tests\Unit\Entity\Attribut;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Entity\Meta\RelationInterface;
|
|
use App\Entity\Attribut\RelationAttributInterface;
|
|
use App\Entity\Attribut\RelationAttribut;
|
|
|
|
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());
|
|
}
|
|
}
|