testConnectAndQLog() — netty Function Reference
Architecture documentation for the testConnectAndQLog() function in QuicChannelConnectTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD e6bfbc8d_0670_3c4f_1514_4e3e947982d5["testConnectAndQLog()"] 1e1bc485_1969_4537_ef9b_f28971b2f663["QuicChannelConnectTest"] e6bfbc8d_0670_3c4f_1514_4e3e947982d5 -->|defined in| 1e1bc485_1969_4537_ef9b_f28971b2f663 92194a28_1ade_17eb_5f02_fdef14ac04b3["testQLog()"] e6bfbc8d_0670_3c4f_1514_4e3e947982d5 -->|calls| 92194a28_1ade_17eb_5f02_fdef14ac04b3 style e6bfbc8d_0670_3c4f_1514_4e3e947982d5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java lines 99–115
@ParameterizedTest
@MethodSource("newSslTaskExecutors")
@Timeout(value = 5000, unit = TimeUnit.MILLISECONDS)
public void testConnectAndQLog(Executor executor) throws Throwable {
Path path = Files.createTempFile("qlog", ".quic");
assertTrue(path.toFile().delete());
testQLog(executor, path, p -> {
try {
// Some log should have been written at some point.
while (Files.readAllLines(p).isEmpty()) {
Thread.sleep(100);
}
} catch (Exception e) {
throw new AssertionError(e);
}
});
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testConnectAndQLog() do?
testConnectAndQLog() is a function in the netty codebase, defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java.
Where is testConnectAndQLog() defined?
testConnectAndQLog() is defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java at line 99.
What does testConnectAndQLog() call?
testConnectAndQLog() calls 1 function(s): testQLog.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free