TestContextBindPlain() — gin Function Reference
Architecture documentation for the TestContextBindPlain() function in context_test.go from the gin codebase.
Entity Profile
Dependency Diagram
graph TD 8d6702bc_7b2c_bdbf_13cd_e555d3573bb4["TestContextBindPlain()"] ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"] 8d6702bc_7b2c_bdbf_13cd_e555d3573bb4 -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508 style 8d6702bc_7b2c_bdbf_13cd_e555d3573bb4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
context_test.go lines 2191–2213
func TestContextBindPlain(t *testing.T) {
// string
w := httptest.NewRecorder()
c, _ := CreateTestContext(w)
c.Request, _ = http.NewRequest(http.MethodPost, "/", bytes.NewBufferString(`test string`))
c.Request.Header.Add("Content-Type", MIMEPlain)
var s string
require.NoError(t, c.BindPlain(&s))
assert.Equal(t, "test string", s)
assert.Equal(t, 0, w.Body.Len())
// []byte
c.Request, _ = http.NewRequest(http.MethodPost, "/", bytes.NewBufferString(`test []byte`))
c.Request.Header.Add("Content-Type", MIMEPlain)
var bs []byte
require.NoError(t, c.BindPlain(&bs))
assert.Equal(t, []byte("test []byte"), bs)
assert.Equal(t, 0, w.Body.Len())
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does TestContextBindPlain() do?
TestContextBindPlain() is a function in the gin codebase, defined in context_test.go.
Where is TestContextBindPlain() defined?
TestContextBindPlain() is defined in context_test.go at line 2191.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free