TestContextRenderJSONP() — gin Function Reference
Architecture documentation for the TestContextRenderJSONP() function in context_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 82c47209_0032_0f45_4d45_5b59072e0ae8["TestContextRenderJSONP()"] ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"] 82c47209_0032_0f45_4d45_5b59072e0ae8 -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508 style 82c47209_0032_0f45_4d45_5b59072e0ae8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
context_test.go lines 1073–1083
func TestContextRenderJSONP(t *testing.T) {
w := httptest.NewRecorder()
c, _ := CreateTestContext(w)
c.Request, _ = http.NewRequest(http.MethodGet, "http://example.com/?callback=x", nil)
c.JSONP(http.StatusCreated, H{"foo": "bar"})
assert.Equal(t, http.StatusCreated, w.Code)
assert.Equal(t, "x({\"foo\":\"bar\"});", w.Body.String())
assert.Equal(t, "application/javascript; charset=utf-8", w.Header().Get("Content-Type"))
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does TestContextRenderJSONP() do?
TestContextRenderJSONP() is a function in the gin codebase, defined in context_test.go.
Where is TestContextRenderJSONP() defined?
TestContextRenderJSONP() is defined in context_test.go at line 1073.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free