Home / Function/ testReservedUnskippableChunkTypeCausesError() — netty Function Reference

testReservedUnskippableChunkTypeCausesError() — netty Function Reference

Architecture documentation for the testReservedUnskippableChunkTypeCausesError() function in SnappyFrameDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  6df3bdaa_0706_f350_2c9c_41cca76852de["testReservedUnskippableChunkTypeCausesError()"]
  8017c2dc_c3bf_3f79_0edd_8dd86487179d["SnappyFrameDecoderTest"]
  6df3bdaa_0706_f350_2c9c_41cca76852de -->|defined in| 8017c2dc_c3bf_3f79_0edd_8dd86487179d
  style 6df3bdaa_0706_f350_2c9c_41cca76852de fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java lines 45–57

    @Test
    public void testReservedUnskippableChunkTypeCausesError() {
        final ByteBuf in = Unpooled.wrappedBuffer(new byte[] {
            0x03, 0x01, 0x00, 0x00, 0x00
        });

        assertThrows(DecompressionException.class, new Executable() {
            @Override
            public void execute() {
                channel.writeInbound(in);
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testReservedUnskippableChunkTypeCausesError() do?
testReservedUnskippableChunkTypeCausesError() is a function in the netty codebase, defined in codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java.
Where is testReservedUnskippableChunkTypeCausesError() defined?
testReservedUnskippableChunkTypeCausesError() is defined in codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java at line 45.

Analyze Your Own Codebase

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

Try Supermodel Free