| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | protected function setUp(): void |
||
| 36 | { |
||
| 37 | $kernel = $this->createKernel(); |
||
| 38 | $kernel->addConfigFile(__DIR__.'/app/config/default.yaml'); |
||
| 39 | |||
| 40 | $kernel->addBundle(TwigBundle::class); |
||
| 41 | $kernel->addBundle(TranslationBundle::class); |
||
| 42 | |||
| 43 | $this->kernel = $kernel; |
||
| 44 | |||
| 45 | parent::setUp(); |
||
| 46 | } |
||
| 48 |