Home / Function/ testReservedSkippableSkipsInput() — netty Function Reference

testReservedSkippableSkipsInput() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

codec-compression/src/test/java/io/netty/handler/codec/compression/SnappyFrameDecoderTest.java lines 129–140

    @Test
    public void testReservedSkippableSkipsInput() {
        ByteBuf in = Unpooled.wrappedBuffer(new byte[] {
           (byte) 0xff, 0x06, 0x00, 0x00, 0x73, 0x4e, 0x61, 0x50, 0x70, 0x59,
           -0x7f, 0x05, 0x00, 0x00, 'n', 'e', 't', 't', 'y'
        });

        assertFalse(channel.writeInbound(in));
        assertNull(channel.readInbound());

        assertFalse(in.isReadable());
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free