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