()
| 69 | func (c *testControllerHandle) EndRequest(ctx iris.Context) {} |
| 70 | |
| 71 | func (c *testControllerHandle) Get() string { |
| 72 | if c.Ctx.GetCurrentRoute().Name() != "index_route" { |
| 73 | return "Get's route's name didn't change on AfterActivation" |
| 74 | } |
| 75 | return "index" |
| 76 | } |
| 77 | |
| 78 | func (c *testControllerHandle) HiStatic() string { |
| 79 | if c.Ctx.GetCurrentRoute().Name() != "hi_static_route" { |
nothing calls this directly
no test coverage detected