Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
22 | public function creation() |
||
23 | { |
||
24 | $helper = new IoHelper(); |
||
25 | $this->assertInstanceOf('N98\Util\Console\Helper\IoHelper', $helper); |
||
26 | $this->assertInstanceOf('Symfony\Component\Console\Helper\HelperInterface', $helper); |
||
27 | $this->assertNull($helper->getOutput()); |
||
28 | |||
29 | $this->assertSame('io', $helper->getName()); |
||
30 | } |
||
31 | } |
||
32 |