| 11 | |
| 12 | describe('PathsExplorer', () => { |
| 13 | @Controller('global') |
| 14 | class TestRoute { |
| 15 | @Get('test') |
| 16 | public getTest() {} |
| 17 | |
| 18 | @Post('test') |
| 19 | public postTest() {} |
| 20 | |
| 21 | @All('another-test') |
| 22 | public anotherTest() {} |
| 23 | |
| 24 | @Get(['foo', 'bar']) |
| 25 | public getTestUsingArray() {} |
| 26 | } |
| 27 | |
| 28 | @Controller(['global', 'global-alias']) |
| 29 | class TestRouteAlias { |
nothing calls this directly
no test coverage detected