mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 01:09:41 +00:00 
			
		
		
		
	Implemented some tests for UserSource and deleted unnecessary attributs
This commit is contained in:
		
							
								
								
									
										27
									
								
								application/tests/Unit/Entity/Source/Data/UserSourceTest.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								application/tests/Unit/Entity/Source/Data/UserSourceTest.php
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | ||||
| <?php | ||||
| namespace tests\unit\Entity\Source\Data; | ||||
|  | ||||
| use PHPUnit\Framework\TestCase; | ||||
| use App\Entity\Source\Data\UserSourceInterface; | ||||
| use App\Entity\Source\Data\UserSource; | ||||
| use Doctrine\Common\Collections\Collection; | ||||
| use App\Entity\Source\Data\NameSourceInterface; | ||||
|  | ||||
| class UserSourceTest extends TestCase | ||||
| { | ||||
|     /** | ||||
|      *  | ||||
|      * @var UserSourceInterface | ||||
|      */ | ||||
|     public $userSource; | ||||
|      | ||||
|     public function setUp():void{ | ||||
|         $this->userSource = new UserSource(); | ||||
|     } | ||||
|      | ||||
|     public function testConstructor():void { | ||||
|         $this->assertInstanceOf(Collection::class, $this->userSource->getMemberships()); | ||||
|         $this->assertInstanceOf(NameSourceInterface::class, $this->userSource->getNameSource()); | ||||
|     } | ||||
| } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user