| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function success() |
||
| 14 | { |
||
| 15 | $terminal = $this->makeTerminal(); |
||
| 16 | |||
| 17 | $result = $terminal->execute('/clear'); |
||
| 18 | |||
| 19 | $expectedArray = [ |
||
| 20 | [ |
||
| 21 | 'type' => 'info', |
||
| 22 | 'content' => 'Output text...', |
||
| 23 | ] |
||
| 24 | ]; |
||
| 25 | |||
| 26 | $this->assertNotNull($result['timestamp']); |
||
| 27 | $this->assertEquals($result['lines'], $expectedArray); |
||
| 28 | } |
||
| 29 | |||
| 69 |