(t *testing.T)
| 649 | } |
| 650 | |
| 651 | func TestBindingFormPostForMapFail(t *testing.T) { |
| 652 | req := createFormPostRequestForMapFail(t) |
| 653 | var obj FooStructForMapType |
| 654 | err := FormPost.Bind(req, &obj) |
| 655 | require.Error(t, err) |
| 656 | } |
| 657 | |
| 658 | func TestBindingFormFilesMultipart(t *testing.T) { |
| 659 | req := createFormFilesMultipartRequest(t) |
nothing calls this directly
no test coverage detected