(t *testing.T)
| 239 | } |
| 240 | |
| 241 | func TestBindingForm2(t *testing.T) { |
| 242 | testFormBinding(t, http.MethodGet, |
| 243 | "/?foo=bar&bar=foo", "/?bar2=foo", |
| 244 | "", "") |
| 245 | } |
| 246 | |
| 247 | func TestBindingFormEmbeddedStruct(t *testing.T) { |
| 248 | testFormBindingEmbeddedStruct(t, http.MethodPost, |
nothing calls this directly
no test coverage detected