(t *testing.T)
| 445 | } |
| 446 | |
| 447 | func Test_Session_FromSession(t *testing.T) { |
| 448 | t.Parallel() |
| 449 | app := fiber.New() |
| 450 | |
| 451 | sess := FromContext(app.AcquireCtx(&fasthttp.RequestCtx{})) |
| 452 | require.Nil(t, sess) |
| 453 | |
| 454 | app.Use(New()) |
| 455 | } |
| 456 | |
| 457 | func Test_Session_FromContext_Types(t *testing.T) { |
| 458 | t.Parallel() |
nothing calls this directly
no test coverage detected