| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class UserRepositoryTest extends AbstractRepositoryTest |
||
| 12 | { |
||
| 13 | private UserRepository $repository; |
||
| 14 | |||
| 15 | protected function setUp(): void |
||
| 16 | { |
||
| 17 | parent::setUp(); |
||
| 18 | $this->repository = _em()->getRepository(User::class); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testGetLoginPassword(): void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |