|
@@ 77-80 (lines=4) @@
|
| 74 |
|
$this->taskRepository->save($task); |
| 75 |
|
|
| 76 |
|
$executions = []; |
| 77 |
|
for ($i = 0; $i < 3; ++$i) { |
| 78 |
|
$execution = $this->testSave($task); |
| 79 |
|
$executions[$execution->getUuid()] = $execution; |
| 80 |
|
} |
| 81 |
|
|
| 82 |
|
$result = $this->taskExecutionRepository->findAll(); |
| 83 |
|
|
|
@@ 97-100 (lines=4) @@
|
| 94 |
|
$this->taskRepository->save($task); |
| 95 |
|
|
| 96 |
|
$executions = []; |
| 97 |
|
for ($i = 0; $i < 3; ++$i) { |
| 98 |
|
$execution = $this->testSave($task); |
| 99 |
|
$executions[$execution->getUuid()] = $execution; |
| 100 |
|
} |
| 101 |
|
|
| 102 |
|
$result = $this->taskExecutionRepository->findAll(1, 2); |
| 103 |
|
|