Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class NotInteractiveTerminalTest extends TestCase |
||
12 | { |
||
13 | public function testInputNotInteractive() : void |
||
14 | { |
||
15 | $e = NotInteractiveTerminal::inputNotInteractive(); |
||
16 | |||
17 | self::assertEquals('Input stream is not interactive (non TTY)', $e->getMessage()); |
||
18 | } |
||
19 | |||
20 | public function testOutputNotInteractive() : void |
||
25 | } |
||
26 | } |
||
27 |