()
| 76 | } |
| 77 | |
| 78 | func (c *testControllerHandle) HiStatic() string { |
| 79 | if c.Ctx.GetCurrentRoute().Name() != "hi_static_route" { |
| 80 | return "HiStatic's route's name didn't change on AfterActivation" |
| 81 | } |
| 82 | |
| 83 | return c.reqField |
| 84 | } |
| 85 | |
| 86 | func (c *testControllerHandle) HiService() string { |
| 87 | return c.Service.Say("hi") |
nothing calls this directly
no test coverage detected