| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function testConstructor() |
||
| 13 | { |
||
| 14 | $application = new Application(); |
||
| 15 | |||
| 16 | $this->assertTrue($application->has("check")); |
||
| 17 | $this->assertTrue($application->has("compile")); |
||
| 18 | $this->assertTrue($application->has("config:dump-reference")); |
||
| 19 | $this->assertTrue($application->has("config:dump-documentation")); |
||
| 20 | } |
||
| 21 | |||
| 42 |