Home / Function/ testHandshakeWithExecutorTLSv13() — netty Function Reference

testHandshakeWithExecutorTLSv13() — netty Function Reference

Architecture documentation for the testHandshakeWithExecutorTLSv13() function in NettyBlockHoundIntegrationTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  69e2cf39_b9c1_a56b_3e86_5e5660f57214["testHandshakeWithExecutorTLSv13()"]
  746a8721_66e8_40dd_5dc1_a4c697fa84e4["NettyBlockHoundIntegrationTest"]
  69e2cf39_b9c1_a56b_3e86_5e5660f57214 -->|defined in| 746a8721_66e8_40dd_5dc1_a4c697fa84e4
  fa42d7ef_0cad_c1cf_60b8_42fc05f6a05e["testHandshakeWithExecutor()"]
  69e2cf39_b9c1_a56b_3e86_5e5660f57214 -->|calls| fa42d7ef_0cad_c1cf_60b8_42fc05f6a05e
  style 69e2cf39_b9c1_a56b_3e86_5e5660f57214 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java lines 262–272

    @Test
    public void testHandshakeWithExecutorTLSv13() throws Exception {
        assumeTrue(SslProvider.isTlsv13Supported(SslProvider.JDK));
        ExecutorService executorService = Executors.newCachedThreadPool();
        try {
            testHandshakeWithExecutor(executorService, "TLSv1.3");
        } finally {
            executorService.shutdown();
            assertTrue(executorService.awaitTermination(5, TimeUnit.SECONDS));
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testHandshakeWithExecutorTLSv13() do?
testHandshakeWithExecutorTLSv13() is a function in the netty codebase, defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java.
Where is testHandshakeWithExecutorTLSv13() defined?
testHandshakeWithExecutorTLSv13() is defined in transport-blockhound-tests/src/test/java/io/netty/util/internal/NettyBlockHoundIntegrationTest.java at line 262.
What does testHandshakeWithExecutorTLSv13() call?
testHandshakeWithExecutorTLSv13() calls 1 function(s): testHandshakeWithExecutor.

Analyze Your Own Codebase

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

Try Supermodel Free