mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			918 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			918 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Tests\Unit\Entity\Attribut;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
use App\Entity\Attribut\CreatorRelationAttributInterface;
 | 
						|
use App\Entity\Attribut\CreatorRelationAttribut;
 | 
						|
use App\Entity\Meta\Relation\Parent\CreatorRelationInterface;
 | 
						|
 | 
						|
class CreatorRelationAttributTest extends TestCase
 | 
						|
{
 | 
						|
    /***
 | 
						|
     * @var CreatorRelationAttributInterface
 | 
						|
     */
 | 
						|
    protected $creatorRelationAttribut;
 | 
						|
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
        $this->creatorRelationAttribut = new class() implements CreatorRelationAttributInterface {
 | 
						|
            use CreatorRelationAttribut;
 | 
						|
        };
 | 
						|
    }
 | 
						|
 | 
						|
    public function testAccessors(): void
 | 
						|
    {
 | 
						|
        $relation = $this->createMock(CreatorRelationInterface::class);
 | 
						|
        $this->assertNull($this->creatorRelationAttribut->setCreatorRelation($relation));
 | 
						|
        $this->assertEquals($relation, $this->creatorRelationAttribut->getCreatorRelation());
 | 
						|
    }
 | 
						|
}
 |