mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 09:19:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			737 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			737 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());
 | |
|     }
 | |
|     
 | |
| }
 | |
| 
 |