Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function testUnknownSymbols(): void |
||
29 | { |
||
30 | $path = __DIR__ . "/../fixtures/unknownSymbols/composer.json"; |
||
31 | exec("{$this->bin} check {$path} 2>&1", $output, $return); |
||
32 | $this->assertSame(1, $return); |
||
33 | $this->assertStringContainsString("The following unknown symbols were found", implode("\n", $output)); |
||
34 | } |
||
44 |