Home / Function/ testRemoveTransferEncodingIgnoreCase() — netty Function Reference

testRemoveTransferEncodingIgnoreCase() — netty Function Reference

Architecture documentation for the testRemoveTransferEncodingIgnoreCase() function in HttpUtilTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  54dd9009_208d_daed_1697_8f5a46393584["testRemoveTransferEncodingIgnoreCase()"]
  04f193b8_77e1_8af0_51b3_8dcd3ac8de0e["HttpUtilTest"]
  54dd9009_208d_daed_1697_8f5a46393584 -->|defined in| 04f193b8_77e1_8af0_51b3_8dcd3ac8de0e
  style 54dd9009_208d_daed_1697_8f5a46393584 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java lines 91–98

    @Test
    public void testRemoveTransferEncodingIgnoreCase() {
        HttpMessage message = new DefaultHttpResponse(HttpVersion.HTTP_1_1, HttpResponseStatus.OK);
        message.headers().set(HttpHeaderNames.TRANSFER_ENCODING, "Chunked");
        assertFalse(message.headers().isEmpty());
        HttpUtil.setTransferEncodingChunked(message, false);
        assertTrue(message.headers().isEmpty());
    }

Domain

Subdomains

Frequently Asked Questions

What does testRemoveTransferEncodingIgnoreCase() do?
testRemoveTransferEncodingIgnoreCase() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java.
Where is testRemoveTransferEncodingIgnoreCase() defined?
testRemoveTransferEncodingIgnoreCase() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpUtilTest.java at line 91.

Analyze Your Own Codebase

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

Try Supermodel Free