Home / Function/ smokeTest() — netty Function Reference

smokeTest() — netty Function Reference

Architecture documentation for the smokeTest() function in CodecHttp3Test.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  b90b60f1_89bf_213e_bf97_5dd0f3118f5a["smokeTest()"]
  6c8fb13b_b80f_3665_36aa_58857fdc6fd3["CodecHttp3Test"]
  b90b60f1_89bf_213e_bf97_5dd0f3118f5a -->|defined in| 6c8fb13b_b80f_3665_36aa_58857fdc6fd3
  0ab38458_0c2c_d279_6635_52895d2e6ba2["runClient()"]
  b90b60f1_89bf_213e_bf97_5dd0f3118f5a -->|calls| 0ab38458_0c2c_d279_6635_52895d2e6ba2
  style b90b60f1_89bf_213e_bf97_5dd0f3118f5a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CodecHttp3Test.java lines 61–73

    @Test
    public void smokeTest() throws Exception {

        int port = PORT;
        EventLoopGroup group = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
        try {
            Channel serverChannel = startServer(group, port);
            runClient(group, port);
            serverChannel.close().sync();
        } finally {
            group.shutdownGracefully();
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does smokeTest() do?
smokeTest() is a function in the netty codebase, defined in testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CodecHttp3Test.java.
Where is smokeTest() defined?
smokeTest() is defined in testsuite-jpms/src/test/java/io/netty/testsuite_jpms/test/CodecHttp3Test.java at line 61.
What does smokeTest() call?
smokeTest() calls 1 function(s): runClient.

Analyze Your Own Codebase

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

Try Supermodel Free