mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-11-03 18:58:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1008 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1008 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Unit\Entity\Attribut;
 | 
						|
 | 
						|
use PHPUnit\Framework\TestCase;
 | 
						|
use App\Entity\Attribut\FirstNameSourceAttribut;
 | 
						|
use App\Entity\Attribut\FirstNameSourceAttributInterface;
 | 
						|
use App\Entity\Source\Primitive\Name\FirstNameSourceInterface;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author kevinfrantz
 | 
						|
 */
 | 
						|
class FirstNameSourceAttributTest extends TestCase
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * @var FirstNameSourceAttributInterface
 | 
						|
     */
 | 
						|
    protected $name;
 | 
						|
 | 
						|
    public function setUp(): void
 | 
						|
    {
 | 
						|
        $this->name = new class() implements FirstNameSourceAttributInterface {
 | 
						|
            use FirstNameSourceAttribut;
 | 
						|
        };
 | 
						|
    }
 | 
						|
 | 
						|
    public function testConstructor(): void
 | 
						|
    {
 | 
						|
        $this->expectException(\TypeError::class);
 | 
						|
        $this->name->getFirstNameSource();
 | 
						|
    }
 | 
						|
 | 
						|
    public function testAccessors(): void
 | 
						|
    {
 | 
						|
        $name = $this->createMock(FirstNameSourceInterface::class);
 | 
						|
        $this->assertNull($this->name->setFirstNameSource($name));
 | 
						|
        $this->assertEquals($name, $this->name->getFirstNameSource());
 | 
						|
    }
 | 
						|
}
 |