1 | <?php |
||
10 | class RenderSubscriberCompilerPassTest extends PHPUnit_Framework_TestCase |
||
11 | { |
||
12 | /** |
||
13 | * @var ContainerBuilder |
||
14 | */ |
||
15 | protected $containerBuilder; |
||
16 | |||
17 | /** |
||
18 | * @var RenderSubscriberCompilerPass |
||
19 | */ |
||
20 | protected $compilerPass; |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function setUp() |
||
30 | |||
31 | /** |
||
32 | * Test the success on the compiler pass |
||
33 | */ |
||
34 | public function testProcessSuccessful() |
||
45 | } |
||
46 |