mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Applied code formator
This commit is contained in:
@@ -33,9 +33,11 @@ class CollectionAttributTest extends TestCase
|
||||
$this->assertNull($this->collection->setCollection($collection));
|
||||
$this->assertEquals($collection, $this->collection->getCollection());
|
||||
}
|
||||
|
||||
public function testAdd():void{
|
||||
$mock = new class{};
|
||||
|
||||
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));
|
||||
|
@@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Unit\Entity\Attribut;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
@@ -9,26 +10,27 @@ use App\Entity\Meta\RecieverInterface;
|
||||
class RecieverAttributTest extends TestCase
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @var RecieverAttributInterface
|
||||
*/
|
||||
protected $reciever;
|
||||
|
||||
public function setUp():void{
|
||||
$this->reciever = new class implements RecieverAttributInterface{
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->reciever = new class() implements RecieverAttributInterface {
|
||||
use RecieverAttribut;
|
||||
};
|
||||
}
|
||||
|
||||
public function testConstructor():void{
|
||||
|
||||
public function testConstructor(): void
|
||||
{
|
||||
$this->expectException(\TypeError::class);
|
||||
$this->reciever->getReciever();
|
||||
}
|
||||
|
||||
public function testAccessors():void{
|
||||
|
||||
public function testAccessors(): void
|
||||
{
|
||||
$reciever = $this->createMock(RecieverInterface::class);
|
||||
$this->assertNull($this->reciever->setReciever($reciever));
|
||||
$this->assertEquals($reciever, $this->reciever->getReciever());
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user