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