createFormPostRequestForMap() — gin Function Reference
Architecture documentation for the createFormPostRequestForMap() function in binding_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 5ebebc5b_7ff8_ebf8_ae85_37d0951be4e5["createFormPostRequestForMap()"] 27ebe3e5_31d8_386a_d67c_656a3559a0ac["TestBindingFormPostForMap()"] 27ebe3e5_31d8_386a_d67c_656a3559a0ac -->|calls| 5ebebc5b_7ff8_ebf8_ae85_37d0951be4e5 style 5ebebc5b_7ff8_ebf8_ae85_37d0951be4e5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
binding/binding_test.go lines 517–522
func createFormPostRequestForMap(t *testing.T) *http.Request {
req, err := http.NewRequest(http.MethodPost, "/?map_foo=getfoo", bytes.NewBufferString("map_foo={\"bar\":123}"))
require.NoError(t, err)
req.Header.Set("Content-Type", MIMEPOSTForm)
return req
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does createFormPostRequestForMap() do?
createFormPostRequestForMap() is a function in the gin codebase.
What calls createFormPostRequestForMap()?
createFormPostRequestForMap() is called by 1 function(s): TestBindingFormPostForMap.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free