(t *testing.T)
| 436 | } |
| 437 | |
| 438 | func TestBindUnsupportedMediaType(t *testing.T) { |
| 439 | testBindError(t, strings.NewReader(invalidContent), MIMEApplicationJSON, &json.SyntaxError{}) |
| 440 | } |
| 441 | |
| 442 | func TestDefaultBinder_bindDataToMap(t *testing.T) { |
| 443 | exampleData := map[string][]string{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…