| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function testSelfCheckShowsNoErrors() |
||
| 35 | { |
||
| 36 | $this->commandTester->execute([ |
||
| 37 | // that's our own composer.json, lets be sure our self check does not throw errors |
||
| 38 | 'composer-json' => dirname(__DIR__, 3) . '/composer.json' |
||
| 39 | ]); |
||
| 40 | |||
| 41 | $this->assertSame(0, $this->commandTester->getStatusCode()); |
||
| 42 | $this->assertContains('no unknown symbols found', $this->commandTester->getDisplay()); |
||
| 43 | } |
||
| 44 | |||
| 45 | } |