mirror of
				https://github.com/kevinveenbirkenbach/infinito.git
				synced 2025-10-31 09:19:08 +00:00 
			
		
		
		
	Refactored tests
This commit is contained in:
		| @@ -7,7 +7,6 @@ use App\Entity\Source\SourceInterface; | ||||
| use App\Domain\SourceManagement\SourceMemberManagerInterface; | ||||
| use App\Entity\Source\AbstractSource; | ||||
| use App\Domain\SourceManagement\SourceMemberManager; | ||||
| use App\Domain\SourceManagement\SourceMemberInformation; | ||||
|  | ||||
| class SourceMemberManagerTest extends TestCase | ||||
| { | ||||
| @@ -54,17 +53,4 @@ class SourceMemberManagerTest extends TestCase | ||||
|         $this->assertEquals(0, $this->source->getMemberRelation()->getMemberships()->count()); | ||||
|         $this->assertEquals(0, $membership->getMemberRelation()->getMembers()->count()); | ||||
|     } | ||||
|  | ||||
|     /** | ||||
|      * @todo Move this function to an own integration test class | ||||
|      */ | ||||
|     public function testSourceMemberInformationIntegration(): void | ||||
|     { | ||||
|         $childSource = $this->createSource(); | ||||
|         $sourceMemberInformation = new SourceMemberInformation($this->source); | ||||
|         $this->sourceMemberManager->addMember($childSource); | ||||
|         $this->assertEquals($childSource, $sourceMemberInformation->getAllMembers()->get(0)); | ||||
|         $this->sourceMemberManager->removeMember($childSource); | ||||
|         $this->assertEquals(0, $sourceMemberInformation->getAllMembers()->count()); | ||||
|     } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user