| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | public function testRemove() |
||
| 11 | { |
||
| 12 | $entity = $this->getService() |
||
| 13 | ->store($this->getRepositoryTest()->getMockArray()) |
||
| 14 | ->flush(); |
||
| 15 | |||
| 16 | $this->getService() |
||
| 17 | ->remove($entity->getId()) |
||
| 18 | ->flush(); |
||
| 19 | |||
| 20 | $find = $this->getService()->getMainRepository()->find($entity->getId()); |
||
| 21 | } |
||
| 22 | } |
||
| 23 |
Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.