mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 06:27:24 +01:00
37 lines
1.0 KiB
PHP
37 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Attribut;
|
|
|
|
use Infinito\Attribut\MemberRelationAttribut;
|
|
use Infinito\Attribut\MemberRelationAttributInterface;
|
|
use Infinito\Entity\Meta\Relation\Member\MemberRelationInterface;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class MemberRelationAttributTest extends TestCase
|
|
{
|
|
/**
|
|
* @var MemberRelationAttributInterface
|
|
*/
|
|
protected $memberRelation;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->memberRelation = new class() implements MemberRelationAttributInterface {
|
|
use MemberRelationAttribut;
|
|
};
|
|
}
|
|
|
|
public function testConstructor(): void
|
|
{
|
|
$this->expectException(\TypeError::class);
|
|
$this->memberRelation->getMemberRelation();
|
|
}
|
|
|
|
public function testAccessors(): void
|
|
{
|
|
$membership = $this->createMock(MemberRelationInterface::class);
|
|
$this->assertNull($this->memberRelation->setMemberRelation($membership));
|
|
$this->assertEquals($this->memberRelation->getMemberRelation(), $membership);
|
|
}
|
|
}
|