| 26 | } |
| 27 | |
| 28 | @Controller(['global', 'global-alias']) |
| 29 | class TestRouteAlias { |
| 30 | @Get('test') |
| 31 | public getTest() {} |
| 32 | |
| 33 | @Post('test') |
| 34 | public postTest() {} |
| 35 | |
| 36 | @All('another-test') |
| 37 | public anotherTest() {} |
| 38 | |
| 39 | @Get(['foo', 'bar']) |
| 40 | public getTestUsingArray() {} |
| 41 | } |
| 42 | |
| 43 | let pathsExplorer: PathsExplorer; |
| 44 |
nothing calls this directly
no test coverage detected