Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function testUnknownSymbols() |
||
25 | { |
||
26 | $path = __DIR__ . "/../fixtures/unknownSymbols/composer.json"; |
||
27 | exec("{$this->bin} check {$path} 2>&1", $output, $return); |
||
28 | $this->assertSame(1, $return); |
||
29 | $this->assertContains("The following unknown symbols were found", implode("\n", $output)); |
||
30 | } |
||
40 |