| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | protected function setUp() |
||
| 24 | { |
||
| 25 | // set up command tester |
||
| 26 | self::bootKernel(); |
||
| 27 | $application = new Application(self::$kernel); |
||
| 28 | $application->add(new Command()); |
||
| 29 | $this->command = $application->find('show-unused-mysql-tables'); |
||
| 30 | $this->commandTester = new CommandTester($this->command); |
||
| 31 | } |
||
| 46 |