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