(t *testing.T)
| 233 | } |
| 234 | |
| 235 | func TestBindingForm(t *testing.T) { |
| 236 | testFormBinding(t, http.MethodPost, |
| 237 | "/", "/", |
| 238 | "foo=bar&bar=foo", "bar2=foo") |
| 239 | } |
| 240 | |
| 241 | func TestBindingForm2(t *testing.T) { |
| 242 | testFormBinding(t, http.MethodGet, |
nothing calls this directly
no test coverage detected