mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-09 22:17:26 +01:00
Implemented tests for attribut reciever
This commit is contained in:
parent
cd3585c3e3
commit
15b17c28b7
@ -0,0 +1,34 @@
|
|||||||
|
<?php
|
||||||
|
namespace Tests\Unit\Entity\Attribut;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
use App\Entity\Attribut\RecieverAttributInterface;
|
||||||
|
use App\Entity\Attribut\RecieverAttribut;
|
||||||
|
use App\Entity\Meta\RecieverInterface;
|
||||||
|
|
||||||
|
class RecieverAttributTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @var RecieverAttributInterface
|
||||||
|
*/
|
||||||
|
protected $reciever;
|
||||||
|
|
||||||
|
public function setUp():void{
|
||||||
|
$this->reciever = new class implements RecieverAttributInterface{
|
||||||
|
use RecieverAttribut;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testConstructor():void{
|
||||||
|
$this->expectException(\TypeError::class);
|
||||||
|
$this->reciever->getReciever();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testAccessors():void{
|
||||||
|
$reciever = $this->createMock(RecieverInterface::class);
|
||||||
|
$this->assertNull($this->reciever->setReciever($reciever));
|
||||||
|
$this->assertEquals($reciever, $this->reciever->getReciever());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user