mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
29 lines
704 B
PHP
29 lines
704 B
PHP
|
<?php
|
||
|
namespace tests\Unit\Entity\Meta;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use App\Entity\Meta\RelationInterface;
|
||
|
use App\Entity\Meta\Relation;
|
||
|
use Doctrine\Common\Collections\Collection;
|
||
|
|
||
|
class RelationTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
*
|
||
|
* @var RelationInterface
|
||
|
*/
|
||
|
protected $relation;
|
||
|
|
||
|
public function setUp():void{
|
||
|
$this->relation = new Relation();
|
||
|
}
|
||
|
|
||
|
public function testConstructor():void {
|
||
|
$this->assertInstanceOf(Collection::class, $this->relation->getChilds());
|
||
|
$this->assertInstanceOf(Collection::class, $this->relation->getParents());
|
||
|
$this->expectException(\TypeError::class);
|
||
|
$this->relation->getSource();
|
||
|
}
|
||
|
}
|
||
|
|