(w http.ResponseWriter, r *http.Request)
| 27 | } |
| 28 | |
| 29 | func httpStatusCode(w http.ResponseWriter, r *http.Request) { |
| 30 | w.WriteHeader(http.StatusSwitchingProtocols) |
| 31 | } |
| 32 | |
| 33 | func TestHTTPSuccess(t *testing.T) { |
| 34 | t.Parallel() |
nothing calls this directly
no test coverage detected