testDeprecatedMethodsStillWork() — netty Function Reference
Architecture documentation for the testDeprecatedMethodsStillWork() function in DefaultHttp3SettingsFrameTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 705a66ba_52bb_3c06_3d39_6225f23d2cbc["testDeprecatedMethodsStillWork()"] 7f96b856_e26b_5a86_c5be_2535fa398741["DefaultHttp3SettingsFrameTest"] 705a66ba_52bb_3c06_3d39_6225f23d2cbc -->|defined in| 7f96b856_e26b_5a86_c5be_2535fa398741 style 705a66ba_52bb_3c06_3d39_6225f23d2cbc fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java lines 137–147
@Test
void testDeprecatedMethodsStillWork() {
DefaultHttp3SettingsFrame frame = new DefaultHttp3SettingsFrame();
frame.put(Http3SettingIdentifier.HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS.id(), 5L);
// Uses old get() API
assertEquals(5L, frame.get(Http3SettingIdentifier.HTTP3_SETTINGS_QPACK_BLOCKED_STREAMS.id()));
// New typed accessor matches
assertEquals(5L, frame.settings().qpackBlockedStreams());
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does testDeprecatedMethodsStillWork() do?
testDeprecatedMethodsStillWork() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java.
Where is testDeprecatedMethodsStillWork() defined?
testDeprecatedMethodsStillWork() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/DefaultHttp3SettingsFrameTest.java at line 137.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free