Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | $app = $this->createApplication(); |
||
30 | |||
31 | $this->assertTrue($app->getName() === 'Test name'); |
||
32 | $this->assertTrue($app->getVersion() === 'Test version'); |
||
33 | |||
34 | $commands = [ |
||
35 | FakeDefaultCommand::class, |
||
36 | FakeExtraCommand::class, |
||
37 | ]; |
||
38 | |||
39 | $appCommands = collect($app->all()) |
||
40 | ->map( |
||
41 | function ($command) { |
||
63 |