In between commit implementing reciever

This commit is contained in:
Kevin Frantz
2018-10-31 17:19:10 +01:00
parent bb01080b34
commit e7f82c4835
8 changed files with 77 additions and 40 deletions

View File

@@ -1,4 +1,5 @@
<?php
namespace App\tests\unit\Entity\Meta;
use PHPUnit\Framework\TestCase;
@@ -9,16 +10,17 @@ use App\Entity\Meta\RecieverInterface;
class RecieverTest extends TestCase
{
/**
*
* @var RecieverInterface
*/
public $reciever;
public function setUp():void{
public function setUp(): void
{
$this->reciever = new Reciever();
}
public function testConstructor():void {
public function testConstructor(): void
{
$this->assertEquals(Collection::class, $this->reciever->getAllRecievers());
}
}
}