(t *testing.T, r *http.Request, want string)
| 156 | } |
| 157 | |
| 158 | func testMethod(t *testing.T, r *http.Request, want string) { |
| 159 | t.Helper() |
| 160 | if got := r.Method; got != want { |
| 161 | t.Errorf("Request method: %v, want %v", got, want) |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | type values map[string]string |
| 166 |
no outgoing calls
no test coverage detected
searching dependent graphs…