|
@@ 47-60 (lines=14) @@
|
| 44 |
|
$this->runJsCssTest($response); |
| 45 |
|
} |
| 46 |
|
|
| 47 |
|
public function testRunsAction() |
| 48 |
|
{ |
| 49 |
|
$container = $this->getContainerOrm(); |
| 50 |
|
$queueController = new QueueController(); |
| 51 |
|
$queueController->setContainer($container); |
| 52 |
|
$response = $queueController->runsAction(); |
| 53 |
|
self::assertTrue($response instanceof Response); |
| 54 |
|
|
| 55 |
|
$container = $this->getContainerOdm(); |
| 56 |
|
$queueController = new QueueController(); |
| 57 |
|
$queueController->setContainer($container); |
| 58 |
|
$response = $queueController->runsAction(); |
| 59 |
|
self::assertTrue($response instanceof Response); |
| 60 |
|
} |
| 61 |
|
|
| 62 |
|
public function testAllJobsAction() |
| 63 |
|
{ |
|
@@ 62-75 (lines=14) @@
|
| 59 |
|
self::assertTrue($response instanceof Response); |
| 60 |
|
} |
| 61 |
|
|
| 62 |
|
public function testAllJobsAction() |
| 63 |
|
{ |
| 64 |
|
$container = $this->getContainerOrm(); |
| 65 |
|
$queueController = new QueueController(); |
| 66 |
|
$queueController->setContainer($container); |
| 67 |
|
$response = $queueController->jobsAllAction(); |
| 68 |
|
self::assertTrue($response instanceof Response); |
| 69 |
|
|
| 70 |
|
$container = $this->getContainerOdm(); |
| 71 |
|
$queueController = new QueueController(); |
| 72 |
|
$queueController->setContainer($container); |
| 73 |
|
$response = $queueController->jobsAllAction(); |
| 74 |
|
self::assertTrue($response instanceof Response); |
| 75 |
|
} |
| 76 |
|
|
| 77 |
|
public function testJobsRunningAction() |
| 78 |
|
{ |