Home / Function/ testNonByteBufNotPassThrough() — netty Function Reference

testNonByteBufNotPassThrough() — netty Function Reference

Architecture documentation for the testNonByteBufNotPassThrough() function in SslHandlerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  fbf78b7c_d94d_0fb2_5fb0_16c7afa87b6d["testNonByteBufNotPassThrough()"]
  adaf7dc7_94e2_152f_ffdb_453fdaa4f25e["SslHandlerTest"]
  fbf78b7c_d94d_0fb2_5fb0_16c7afa87b6d -->|defined in| adaf7dc7_94e2_152f_ffdb_453fdaa4f25e
  style fbf78b7c_d94d_0fb2_5fb0_16c7afa87b6d fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/ssl/SslHandlerTest.java lines 364–376

    @Test
    public void testNonByteBufNotPassThrough() throws Exception {
        SSLEngine engine = newServerModeSSLEngine();
        final EmbeddedChannel ch = new EmbeddedChannel(new SslHandler(engine));

        assertThrows(UnsupportedMessageTypeException.class, new Executable() {
            @Override
            public void execute() throws Throwable {
                ch.writeOutbound(new Object());
            }
        });
        ch.finishAndReleaseAll();
    }

Domain

Subdomains

Frequently Asked Questions

What does testNonByteBufNotPassThrough() do?
testNonByteBufNotPassThrough() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/SslHandlerTest.java.
Where is testNonByteBufNotPassThrough() defined?
testNonByteBufNotPassThrough() is defined in handler/src/test/java/io/netty/handler/ssl/SslHandlerTest.java at line 364.

Analyze Your Own Codebase

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

Try Supermodel Free