(t *testing.T)
| 705 | } |
| 706 | |
| 707 | func TestBindingFormMultipartForMapFail(t *testing.T) { |
| 708 | req := createFormMultipartRequestForMapFail(t) |
| 709 | var obj FooStructForMapType |
| 710 | err := FormMultipart.Bind(req, &obj) |
| 711 | require.Error(t, err) |
| 712 | } |
| 713 | |
| 714 | func TestBindingProtoBuf(t *testing.T) { |
| 715 | test := &protoexample.Test{ |
nothing calls this directly
no test coverage detected