| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 10 | 
| Code Lines | 6 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 11 | public function testExecute()  | 
            ||
| 12 |     { | 
            ||
| 13 | $application = new Application();  | 
            ||
| 14 | |||
| 15 |         $command = $application->find('check'); | 
            ||
| 16 | $commandTester = new CommandTester($command);  | 
            ||
| 17 | $commandTester->execute(['command' => $command->getName(), 'path' => 'tests/PHPSA/Command/']);  | 
            ||
| 18 | |||
| 19 |         $this->assertContains('Memory usage:', $commandTester->getDisplay()); | 
            ||
| 20 | }  | 
            ||
| 21 | }  | 
            ||
| 22 |