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