testDecodeULE128LongMax() — netty Function Reference
Architecture documentation for the testDecodeULE128LongMax() function in HpackDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c6b23e0f_aa20_b97b_9568_efd00b7c86b9["testDecodeULE128LongMax()"] 499468ca_3853_024b_2b80_17090ef6cd43["HpackDecoderTest"] c6b23e0f_aa20_b97b_9568_efd00b7c86b9 -->|defined in| 499468ca_3853_024b_2b80_17090ef6cd43 style c6b23e0f_aa20_b97b_9568_efd00b7c86b9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java lines 137–147
@Test
public void testDecodeULE128LongMax() throws Http2Exception {
byte[] input = {(byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF,
(byte) 0xFF, (byte) 0x7F};
ByteBuf in = Unpooled.wrappedBuffer(input);
try {
assertEquals(Long.MAX_VALUE, decodeULE128(in, 0L));
} finally {
in.release();
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testDecodeULE128LongMax() do?
testDecodeULE128LongMax() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java.
Where is testDecodeULE128LongMax() defined?
testDecodeULE128LongMax() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/HpackDecoderTest.java at line 137.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free