(t *testing.T)
| 28 | ) |
| 29 | |
| 30 | func TestIrisServer(t *testing.T) { |
| 31 | server := irisAPI.StrictServer{} |
| 32 | strictHandler := irisAPI.NewStrictHandler(server, nil) |
| 33 | i := iris.New() |
| 34 | irisAPI.RegisterHandlers(i, strictHandler) |
| 35 | testImpl(t, i) |
| 36 | } |
| 37 | |
| 38 | func TestChiServer(t *testing.T) { |
| 39 | server := chiAPI.StrictServer{} |
nothing calls this directly
no test coverage detected