| 22 | |
| 23 | describe('RoutesResolver', () => { |
| 24 | @Controller('global') |
| 25 | class TestRoute { |
| 26 | @Get('test') |
| 27 | public getTest() {} |
| 28 | |
| 29 | @Post('another-test') |
| 30 | public anotherTest() {} |
| 31 | } |
| 32 | |
| 33 | @Controller({ host: 'api.example.com' }) |
| 34 | class TestHostRoute { |
nothing calls this directly
no test coverage detected