(t *testing.T)
| 1206 | } |
| 1207 | |
| 1208 | func TestEchoContext(t *testing.T) { |
| 1209 | e := New() |
| 1210 | c := e.AcquireContext() |
| 1211 | assert.IsType(t, new(Context), c) |
| 1212 | e.ReleaseContext(c) |
| 1213 | } |
| 1214 | |
| 1215 | func TestPreMiddlewares(t *testing.T) { |
| 1216 | e := New() |
nothing calls this directly
no test coverage detected
searching dependent graphs…