| 39 | } |
| 40 | |
| 41 | @Controller(['global', 'global-alias']) |
| 42 | class TestRouteAlias { |
| 43 | @Get('test') |
| 44 | public getTest() {} |
| 45 | |
| 46 | @Post('test') |
| 47 | public postTest() {} |
| 48 | |
| 49 | @All('another-test') |
| 50 | public anotherTest() {} |
| 51 | |
| 52 | @Get(['foo', 'bar']) |
| 53 | public getTestUsingArray() {} |
| 54 | } |
| 55 | |
| 56 | class ClassWithMissingControllerDecorator {} |
| 57 |
nothing calls this directly
no test coverage detected