| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function testParseAnnotation() |
||
| 14 | { |
||
| 15 | $def = (new AnnotationReader())->getControllerAnnotation(AnnotationReaderTestController::class); |
||
| 16 | self::assertEquals('/test', $def->getPrefix()); |
||
| 17 | self::assertCount(4, $def->getModifiers()); |
||
| 18 | self::assertCount(1, $def->getRoutes()); |
||
| 19 | } |
||
| 20 | } |
||
| 49 | } |