(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestChiServer(t *testing.T) { |
| 39 | server := chiAPI.StrictServer{} |
| 40 | strictHandler := chiAPI.NewStrictHandler(server, nil) |
| 41 | r := chi.NewRouter() |
| 42 | handler := chiAPI.HandlerFromMux(strictHandler, r) |
| 43 | testImpl(t, handler) |
| 44 | } |
| 45 | |
| 46 | func TestEchoServer(t *testing.T) { |
| 47 | server := echoAPI.StrictServer{} |
nothing calls this directly
no test coverage detected