| 31 | class BasicController {} |
| 32 | |
| 33 | @Controller('test') |
| 34 | class BaseController { |
| 35 | @RequestMapping({ path: 'test' }) |
| 36 | public getTest() {} |
| 37 | |
| 38 | @RequestMapping({ path: 'another', method: RequestMethod.DELETE }) |
| 39 | public getAnother() {} |
| 40 | } |
| 41 | |
| 42 | @Injectable() |
| 43 | class TestMiddleware implements NestMiddleware { |
nothing calls this directly
no test coverage detected