| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function setUp() |
||
| 33 | { |
||
| 34 | $kernel = new TestKernel('test', true); |
||
| 35 | $kernel->boot(); |
||
| 36 | |||
| 37 | $this->kernel = $kernel; |
||
| 38 | $this->container = $kernel->getContainer(); |
||
| 39 | |||
| 40 | $this->executeCommand('doctrine:database:create'); |
||
| 41 | $this->executeCommand('doctrine:schema:update', ['--force' => true]); |
||
| 42 | } |
||
| 43 | |||
| 57 |