| Total Complexity | 5 |
| Total Lines | 41 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | class Psr0FindFileTest extends TestCase |
||
| 12 | { |
||
| 13 | /** @var Psr0FindFile */ |
||
| 14 | private $psr0FindFile; |
||
| 15 | |||
| 16 | public function testFindFile() : void |
||
| 17 | { |
||
| 18 | $file = $this->psr0FindFile->findFile(NoParent::class); |
||
| 19 | |||
| 20 | self::assertEquals(sprintf('%s/NoParent.php', __DIR__), $file); |
||
| 21 | } |
||
| 22 | |||
| 23 | public function testFindFileNotFound() : void |
||
| 26 | } |
||
| 27 | |||
| 28 | public function testFindFileWithLeadingNamespaceSeparator() : void |
||
| 33 | } |
||
| 34 | |||
| 35 | public function testFindFileFromPearLikeClassName() : void |
||
| 40 | } |
||
| 41 | |||
| 42 | protected function setUp() : void |
||
| 54 |