createFormPostRequestForMap() — gin Function Reference
Architecture documentation for the createFormPostRequestForMap() function in binding_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD b566667a_5307_de87_7176_236170c899fd["createFormPostRequestForMap()"] 314c6481_2bd0_e5a7_282c_94e41df6062a["binding_test.go"] b566667a_5307_de87_7176_236170c899fd -->|defined in| 314c6481_2bd0_e5a7_282c_94e41df6062a f7ea2487_4ef9_d218_e594_0aaeea2a690e["TestBindingFormPostForMap()"] f7ea2487_4ef9_d218_e594_0aaeea2a690e -->|calls| b566667a_5307_de87_7176_236170c899fd style b566667a_5307_de87_7176_236170c899fd 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
Defined In
Called By
Source
Frequently Asked Questions
What does createFormPostRequestForMap() do?
createFormPostRequestForMap() is a function in the gin codebase, defined in binding/binding_test.go.
Where is createFormPostRequestForMap() defined?
createFormPostRequestForMap() is defined in binding/binding_test.go at line 517.
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