go test -run Test_Ctx_RequestCtx
(t *testing.T)
| 1497 | |
| 1498 | // go test -run Test_Ctx_RequestCtx |
| 1499 | func Test_Ctx_RequestCtx(t *testing.T) { |
| 1500 | t.Parallel() |
| 1501 | app := New() |
| 1502 | c := app.AcquireCtx(&fasthttp.RequestCtx{}) |
| 1503 | |
| 1504 | require.Equal(t, "*fasthttp.RequestCtx", fmt.Sprintf("%T", c.RequestCtx())) |
| 1505 | } |
| 1506 | |
| 1507 | // go test -run Test_Ctx_Cookie |
| 1508 | func Test_Ctx_Cookie(t *testing.T) { |
nothing calls this directly
no test coverage detected