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