Home / Function/ testStatusInformationalTransferEncoding() — netty Function Reference

testStatusInformationalTransferEncoding() — netty Function Reference

Architecture documentation for the testStatusInformationalTransferEncoding() function in HttpResponseEncoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  e753c10f_fb34_066f_f303_5b5475065c93["testStatusInformationalTransferEncoding()"]
  9235a1ad_cba8_50c2_25b1_57ce61f5b623["HttpResponseEncoderTest"]
  e753c10f_fb34_066f_f303_5b5475065c93 -->|defined in| 9235a1ad_cba8_50c2_25b1_57ce61f5b623
  83a60783_c879_3bf7_0aef_b701b1dae5ff["assertEmptyResponse()"]
  e753c10f_fb34_066f_f303_5b5475065c93 -->|calls| 83a60783_c879_3bf7_0aef_b701b1dae5ff
  style e753c10f_fb34_066f_f303_5b5475065c93 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java lines 263–271

    @Test
    public void testStatusInformationalTransferEncoding() throws Exception {
        EmbeddedChannel channel = new EmbeddedChannel(new HttpResponseEncoder());
        for (int code = 100; code < 200; code++) {
            HttpResponseStatus status = HttpResponseStatus.valueOf(code);
            assertEmptyResponse(channel, status, HttpHeaderNames.TRANSFER_ENCODING, code != 101);
        }
        assertFalse(channel.finish());
    }

Domain

Subdomains

Frequently Asked Questions

What does testStatusInformationalTransferEncoding() do?
testStatusInformationalTransferEncoding() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java.
Where is testStatusInformationalTransferEncoding() defined?
testStatusInformationalTransferEncoding() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseEncoderTest.java at line 263.
What does testStatusInformationalTransferEncoding() call?
testStatusInformationalTransferEncoding() 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