mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 17:29:04 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			733 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			733 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Unit\Entity\Attribut;
 | |
| 
 | |
| use PHPUnit\Framework\TestCase;
 | |
| use App\Entity\Attribut\IdAttribut;
 | |
| use App\Entity\Attribut\IdAttributInterface;
 | |
| 
 | |
| class IdAttributTest extends TestCase
 | |
| {
 | |
|     /**
 | |
|      * @var IdAttributInterface
 | |
|      */
 | |
|     protected $id;
 | |
| 
 | |
|     public function setUp(): void
 | |
|     {
 | |
|         $this->id = new class() implements IdAttributInterface {
 | |
|             use IdAttribut;
 | |
|         };
 | |
|     }
 | |
| 
 | |
|     public function testConstruct(): void
 | |
|     {
 | |
|         $this->expectException(\TypeError::class);
 | |
|         $this->id->getId();
 | |
|     }
 | |
| 
 | |
|     public function testAccessors(): void
 | |
|     {
 | |
|         $id = 1234;
 | |
|         $this->assertNull($this->id->setId($id));
 | |
|         $this->assertEquals($id, $this->id->getId());
 | |
|     }
 | |
| }
 |