1 | <?php declare(strict_types = 1); |
||
10 | abstract class SymfonyInteropContainerTestCase extends KernelTestCase |
||
11 | { |
||
12 | |||
13 | /** @var ContainerBuilder */ |
||
14 | protected $container; |
||
15 | |||
16 | /** |
||
17 | * @param string[] $bundles |
||
18 | * @param ConfigFile[] $configFiles |
||
19 | * |
||
20 | * @return ContainerInterface |
||
21 | */ |
||
22 | protected function getContainerFromBootedKernelWith( |
||
30 | |||
31 | /** |
||
32 | * @param string[] $bundles |
||
33 | * @param ConfigFile[] $configFiles |
||
34 | * |
||
35 | * @return TestKernel |
||
36 | */ |
||
37 | public function bootKernelWith(array $bundles = [], array $configFiles = []): TestKernel |
||
48 | |||
49 | protected function thenIsInstanceOfExpectedClass($expected, $actual): void |
||
53 | |||
54 | protected function thenPass(): void |
||
58 | } |
||
59 |