Tests/Command/DebugAdvisorCommandTest.php 1 location
|
@@ 18-24 (lines=7) @@
|
15 |
|
|
16 |
|
class DebugAdvisorCommandTest extends TestCase |
17 |
|
{ |
18 |
|
public function setUp() |
19 |
|
{ |
20 |
|
$process = new Process(sprintf('php %s cache:warmup:aop', realpath(__DIR__.'/../Fixtures/project/bin/console'))); |
21 |
|
$process->run(); |
22 |
|
|
23 |
|
$this->assertTrue($process->isSuccessful(), 'Unable to execute "cache:warmup:aop" command.'); |
24 |
|
} |
25 |
|
|
26 |
|
/** |
27 |
|
* @test |
Tests/Command/DebugAspectCommandTest.php 1 location
|
@@ 21-27 (lines=7) @@
|
18 |
|
*/ |
19 |
|
class DebugAspectCommandTest extends TestCase |
20 |
|
{ |
21 |
|
public function setUp() |
22 |
|
{ |
23 |
|
$process = new Process(sprintf('php %s cache:warmup:aop', realpath(__DIR__.'/../Fixtures/project/bin/console'))); |
24 |
|
$process->run(); |
25 |
|
|
26 |
|
$this->assertTrue($process->isSuccessful(), 'Unable to execute "cache:warmup:aop" command.'); |
27 |
|
} |
28 |
|
|
29 |
|
/** |
30 |
|
* @test |