Home / Function/ testCustomKeylog() — netty Function Reference

testCustomKeylog() — netty Function Reference

Architecture documentation for the testCustomKeylog() function in QuicChannelConnectTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fc69cfda_c8d4_a95d_2160_bb4971618026["testCustomKeylog()"]
  1e1bc485_1969_4537_ef9b_f28971b2f663["QuicChannelConnectTest"]
  fc69cfda_c8d4_a95d_2160_bb4971618026 -->|defined in| 1e1bc485_1969_4537_ef9b_f28971b2f663
  ac3aa79a_6415_f0d1_357d_e27d3d9712c4["testKeylog()"]
  fc69cfda_c8d4_a95d_2160_bb4971618026 -->|calls| ac3aa79a_6415_f0d1_357d_e27d3d9712c4
  style fc69cfda_c8d4_a95d_2160_bb4971618026 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java lines 189–197

    @ParameterizedTest
    @MethodSource("newSslTaskExecutors")
    public void testCustomKeylog(Executor executor) throws Throwable {
        AtomicBoolean called = new AtomicBoolean();
        testKeylog(executor, (BoringSSLKeylog) (engine, log) -> {
            called.set(true);
        });
        assertTrue(called.get());
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testCustomKeylog() do?
testCustomKeylog() is a function in the netty codebase, defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java.
Where is testCustomKeylog() defined?
testCustomKeylog() is defined in codec-native-quic/src/test/java/io/netty/handler/codec/quic/QuicChannelConnectTest.java at line 189.
What does testCustomKeylog() call?
testCustomKeylog() calls 1 function(s): testKeylog.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free