Home / Function/ TestContextNegotiationFormat() — gin Function Reference

TestContextNegotiationFormat() — gin Function Reference

Architecture documentation for the TestContextNegotiationFormat() function in context_test.go from the gin codebase.

Entity Profile

Dependency Diagram

graph TD
  9331b7f5_f52b_2b1f_4485_3064818ed3dd["TestContextNegotiationFormat()"]
  ebe0ae48_a62b_a38f_5bac_5bbbd96fc508["context_test.go"]
  9331b7f5_f52b_2b1f_4485_3064818ed3dd -->|defined in| ebe0ae48_a62b_a38f_5bac_5bbbd96fc508
  style 9331b7f5_f52b_2b1f_4485_3064818ed3dd fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

context_test.go lines 1736–1743

func TestContextNegotiationFormat(t *testing.T) {
	c, _ := CreateTestContext(httptest.NewRecorder())
	c.Request, _ = http.NewRequest(http.MethodPost, "", nil)

	assert.Panics(t, func() { c.NegotiateFormat() })
	assert.Equal(t, MIMEJSON, c.NegotiateFormat(MIMEJSON, MIMEXML)) //nolint:testifylint
	assert.Equal(t, MIMEHTML, c.NegotiateFormat(MIMEHTML, MIMEJSON))
}

Domain

Subdomains

Defined In

Frequently Asked Questions

What does TestContextNegotiationFormat() do?
TestContextNegotiationFormat() is a function in the gin codebase, defined in context_test.go.
Where is TestContextNegotiationFormat() defined?
TestContextNegotiationFormat() is defined in context_test.go at line 1736.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free