| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function getAvailableCommands() |
||
| 42 | { |
||
| 43 | $terminal = $this->makeTerminal(); |
||
| 44 | |||
| 45 | $availableCommands = $terminal->getAvailableCommands(); |
||
| 46 | |||
| 47 | $expectedArray = [ |
||
| 48 | [ |
||
| 49 | 'binding' => '/clear', |
||
| 50 | 'description' => 'description', |
||
| 51 | ] |
||
| 52 | ]; |
||
| 53 | |||
| 54 | $this->assertEquals($expectedArray, $availableCommands); |
||
| 55 | } |
||
| 56 | |||
| 69 |