1 | <?php |
||
13 | abstract class ContainerTestCase extends KernelTestCase |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * The class of the Kernel to boot for this test |
||
18 | * @var string |
||
19 | */ |
||
20 | protected static $class = AppKernel::class; |
||
21 | |||
22 | /** |
||
23 | * The Container |
||
24 | * @var ContainerInterface |
||
25 | */ |
||
26 | protected static $container; |
||
27 | |||
28 | /** |
||
29 | * @inheritdoc |
||
30 | */ |
||
31 | public static function setUpBeforeClass() |
||
36 | } |