Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
38 | public function testCoreExtensionsResolvesToPHP() |
||
39 | { |
||
40 | $options = new Options(['php-core-extensions' => ['SPL', 'something-else']]); |
||
41 | $this->guesser = new DependencyGuesser($options); |
||
42 | $result = $this->guesser->__invoke('RecursiveDirectoryIterator'); |
||
43 | $this->assertNotEmpty($result); |
||
44 | $this->assertContains('php', $result); |
||
45 | } |
||
47 |