@@ -7,10 +7,10 @@ |
||
7 | 7 | public function testStore() |
8 | 8 | { |
9 | 9 | $entity = $this->getRepositoryTest() |
10 | - ->getFlushedMockObject(); |
|
10 | + ->getFlushedMockObject(); |
|
11 | 11 | |
12 | 12 | $repository = $this->getService() |
13 | - ->getMainRepository(); |
|
13 | + ->getMainRepository(); |
|
14 | 14 | |
15 | 15 | $find = $repository->find($entity->getId()); |
16 | 16 |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | public function testFindAll() |
8 | 8 | { |
9 | 9 | $entity = $this->getRepositoryTest() |
10 | - ->getFlushedMockObject(); |
|
10 | + ->getFlushedMockObject(); |
|
11 | 11 | |
12 | 12 | $findAll = $this->getService()->findAll()->getResult(); |
13 | 13 | |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | public function testFind() |
19 | 19 | { |
20 | 20 | $entity = $this->getRepositoryTest() |
21 | - ->getFlushedMockObject(); |
|
21 | + ->getFlushedMockObject(); |
|
22 | 22 | |
23 | 23 | $find = $this->getService()->find($entity->getId()); |
24 | 24 |
@@ -10,11 +10,11 @@ |
||
10 | 10 | public function testRemove() |
11 | 11 | { |
12 | 12 | $entity = $this->getRepositoryTest() |
13 | - ->getFlushedMockObject(); |
|
13 | + ->getFlushedMockObject(); |
|
14 | 14 | |
15 | 15 | $this->getService() |
16 | - ->remove($entity->getId()) |
|
17 | - ->flush(); |
|
16 | + ->remove($entity->getId()) |
|
17 | + ->flush(); |
|
18 | 18 | |
19 | 19 | $find = $this->getService()->getMainRepository()->find($entity->getId()); |
20 | 20 | } |