(t *testing.T)
| 44 | } |
| 45 | |
| 46 | func TestEchoServer(t *testing.T) { |
| 47 | server := echoAPI.StrictServer{} |
| 48 | strictHandler := echoAPI.NewStrictHandler(server, nil) |
| 49 | e := echo.New() |
| 50 | echoAPI.RegisterHandlers(e, strictHandler) |
| 51 | testImpl(t, e) |
| 52 | } |
| 53 | |
| 54 | func TestGinServer(t *testing.T) { |
| 55 | server := ginAPI.StrictServer{} |
nothing calls this directly
no test coverage detected