| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function testDispatching() |
||
| 32 | { |
||
| 33 | $this->assertNull( |
||
| 34 | PHPUnit_Framework_Assert::getObjectAttribute($this->outputWriter, 'consoleOutput') |
||
| 35 | ); |
||
| 36 | |||
| 37 | $input = new ArrayInput(['command' => 'migrations:status']); |
||
| 38 | $output = new BufferedOutput; |
||
| 39 | $this->application->run($input, $output); |
||
| 40 | |||
| 41 | $this->assertInstanceOf( |
||
| 42 | OutputInterface::class, |
||
| 43 | PHPUnit_Framework_Assert::getObjectAttribute($this->outputWriter, 'consoleOutput') |
||
| 44 | ); |
||
| 45 | } |
||
| 46 | |||
| 48 |