mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Implemented test for Right
This commit is contained in:
44
application/tests/unit/Entity/Meta/RightTest.php
Normal file
44
application/tests/unit/Entity/Meta/RightTest.php
Normal file
@@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
namespace App\Entity\Meta;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use App\DBAL\Types\RightType;
|
||||
|
||||
/**
|
||||
* @todo Implement reciever test
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class RightTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var RightInterface
|
||||
*/
|
||||
protected $right;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->right = new Right();
|
||||
}
|
||||
|
||||
public function testConstructor(): void
|
||||
{
|
||||
$this->expectException(\TypeError::class);
|
||||
$this->assertNull($this->right->getLaw());
|
||||
$this->assertNull($this->right->getType());
|
||||
}
|
||||
|
||||
public function testLaw(): void
|
||||
{
|
||||
$law = new Law();
|
||||
$this->assertNull($this->right->setLaw($law));
|
||||
$this->assertEquals($law, $this->right->getLaw());
|
||||
}
|
||||
|
||||
public function testRight(): void
|
||||
{
|
||||
$this->assertNull($this->right->setType(RightType::READ));
|
||||
$this->assertEquals(RightType::READ, $this->right->getType());
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user