testToStringAndKeyToStringIndirectly() — netty Function Reference
Architecture documentation for the testToStringAndKeyToStringIndirectly() function in Http3SettingsTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1e30278a_2d83_1d5e_613d_2814e8b4c1b7["testToStringAndKeyToStringIndirectly()"] ee6f69e5_fb9f_2be4_c226_579273bf8ce3["Http3SettingsTest"] 1e30278a_2d83_1d5e_613d_2814e8b4c1b7 -->|defined in| ee6f69e5_fb9f_2be4_c226_579273bf8ce3 style 1e30278a_2d83_1d5e_613d_2814e8b4c1b7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/test/java/io/netty/handler/codec/http3/Http3SettingsTest.java lines 236–248
@Test
void testToStringAndKeyToStringIndirectly() {
Http3Settings settings = new Http3Settings()
.qpackMaxTableCapacity(1)
.qpackBlockedStreams(2)
.enableConnectProtocol(true);
String out = settings.toString();
assertTrue(out.contains("0x1"));
assertTrue(out.contains("0x7"));
assertTrue(out.contains("0x8"));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testToStringAndKeyToStringIndirectly() do?
testToStringAndKeyToStringIndirectly() is a function in the netty codebase, defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3SettingsTest.java.
Where is testToStringAndKeyToStringIndirectly() defined?
testToStringAndKeyToStringIndirectly() is defined in codec-http3/src/test/java/io/netty/handler/codec/http3/Http3SettingsTest.java at line 236.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free