testStatusInformationalContentLength() — netty Function Reference
Architecture documentation for the testStatusInformationalContentLength() function in HttpResponseEncoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 961f77fb_5760_37a9_6f8e_ed08f8209e08["testStatusInformationalContentLength()"] 9235a1ad_cba8_50c2_25b1_57ce61f5b623["HttpResponseEncoderTest"] 961f77fb_5760_37a9_6f8e_ed08f8209e08 -->|defined in| 9235a1ad_cba8_50c2_25b1_57ce61f5b623 83a60783_c879_3bf7_0aef_b701b1dae5ff["assertEmptyResponse()"] 961f77fb_5760_37a9_6f8e_ed08f8209e08 -->|calls| 83a60783_c879_3bf7_0aef_b701b1dae5ff style 961f77fb_5760_37a9_6f8e_ed08f8209e08 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java lines 253–261
@Test
public void testStatusInformationalContentLength() throws Exception {
EmbeddedChannel channel = new EmbeddedChannel(new HttpResponseEncoder());
for (int code = 100; code < 200; code++) {
HttpResponseStatus status = HttpResponseStatus.valueOf(code);
assertEmptyResponse(channel, status, HttpHeaderNames.CONTENT_LENGTH, code != 101);
}
assertFalse(channel.finish());
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testStatusInformationalContentLength() do?
testStatusInformationalContentLength() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java.
Where is testStatusInformationalContentLength() defined?
testStatusInformationalContentLength() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java at line 253.
What does testStatusInformationalContentLength() call?
testStatusInformationalContentLength() calls 1 function(s): assertEmptyResponse.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free