mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Unit\Entity\Attribut;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Entity\Attribut\CollectionAttributInterface;
|
|
use App\Entity\Attribut\CollectionAttribut;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
|
|
class CollectionAttributTest extends TestCase
|
|
{
|
|
/**
|
|
* @var CollectionAttributInterface
|
|
*/
|
|
protected $collection;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->collection = new class() implements CollectionAttributInterface {
|
|
use CollectionAttribut;
|
|
};
|
|
}
|
|
|
|
public function testConstructor(): void
|
|
{
|
|
$this->expectException(\TypeError::class);
|
|
$this->collection->getCollection();
|
|
}
|
|
|
|
public function testAccessors(): void
|
|
{
|
|
$collection = new ArrayCollection();
|
|
$this->assertNull($this->collection->setCollection($collection));
|
|
$this->assertEquals($collection, $this->collection->getCollection());
|
|
}
|
|
|
|
public function testAdd():void{
|
|
$mock = new class{};
|
|
$this->collection->setCollection(new ArrayCollection());
|
|
$this->assertTrue($this->collection->getCollection()->add($mock));
|
|
$this->assertEquals($mock, $this->collection->getCollection()->get(0));
|
|
}
|
|
}
|