| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function testCanLocateClassInMappendAutoloadDefinitions() : void |
||
| 28 | { |
||
| 29 | $reflector = new ClassReflector( |
||
| 30 | $this->locateSources |
||
| 31 | ->__invoke(__DIR__ . '/../../asset/located-sources/composer-definition-with-everything') |
||
| 32 | ); |
||
| 33 | |||
| 34 | self::assertSame( |
||
| 35 | 'baz\\LocatedClass', |
||
| 36 | $reflector |
||
| 37 | ->reflect('baz\\LocatedClass') |
||
| 38 | ->getName() |
||
| 39 | ); |
||
| 42 |