test if context can be binded to the controller's function without need to declare it to a struct if not needed.
(ctx iris.Context)
| 275 | // test if context can be binded to the controller's function |
| 276 | // without need to declare it to a struct if not needed. |
| 277 | func (t *testControllerBindStruct) GetCtx(ctx iris.Context) { |
| 278 | ctx.StatusCode(iris.StatusContinue) |
| 279 | } |
| 280 | |
| 281 | type testControllerBindDeep struct { |
| 282 | testControllerBindStruct |
nothing calls this directly
no test coverage detected