Implemented fullpersonnamesource orm mapping

This commit is contained in:
Kevin Frantz
2018-11-18 12:25:36 +01:00
parent 08c4bee43f
commit 0c852dbec4
5 changed files with 12 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ class UserRepositoryTest extends KernelTestCase
$this->assertEquals($userId, $this->loadedUser->getId());
$this->assertGreaterThan(0, $this->loadedUser->getSource()->getId());
$this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getId());
$this->assertGreaterThan(0, $this->loadedUser->getSource()->getPersonIdentitySource()->getFullPersonNameSource()->getId());
$this->deleteUser();
$this->assertNull($this->userRepository->find($userId));
$this->loadedUser = null;