mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-04 03:07:58 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			899 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			899 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace tests\unit\Entity\Meta;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
use Doctrine\Common\Collections\Collection;
 | 
						|
use Doctrine\Common\Collections\ArrayCollection;
 | 
						|
use App\Entity\Meta\LawInterface;
 | 
						|
use App\Entity\Meta\Law;
 | 
						|
use App\Entity\Meta\Right;
 | 
						|
 | 
						|
class LawTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var LawInterface
 | 
						|
     */
 | 
						|
    protected $law;
 | 
						|
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
        $this->law = new Law();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testConstruct(): void
 | 
						|
    {
 | 
						|
        $this->assertFalse($this->law->getGrant());
 | 
						|
        $this->assertInstanceOf(Collection::class, $this->law->getRights());
 | 
						|
    }
 | 
						|
 | 
						|
    public function testRights(): void
 | 
						|
    {
 | 
						|
        $right = new Right();
 | 
						|
        $rights = new ArrayCollection([$right, new Right(), new Right()]);
 | 
						|
        $this->assertNull($this->law->setRights($rights));
 | 
						|
        $this->assertEquals($right, $this->law->getRights()->get(0));
 | 
						|
    }
 | 
						|
}
 |