diff --git a/application/tests/Unit/Entity/Attribut/RecieverAttributTest.php b/application/tests/Unit/Entity/Attribut/RecieverAttributTest.php new file mode 100644 index 0000000..ce0dcde --- /dev/null +++ b/application/tests/Unit/Entity/Attribut/RecieverAttributTest.php @@ -0,0 +1,34 @@ +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()); + } +} +