| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 36 | public function testInvalidConfiguration(): void |
||
| 37 | { |
||
| 38 | $path = __DIR__ . "/../fixtures/validJson.json"; |
||
| 39 | exec("{$this->bin} check {$path} 2>&1", $output, $return); |
||
| 40 | $this->assertSame(1, $return); |
||
| 41 | $this->assertStringContainsString("dependencies have not been installed", implode("\n", $output)); |
||
| 42 | } |
||
| 44 |