Home / Function/ testDecodeInvalidSeparator() — netty Function Reference

testDecodeInvalidSeparator() — netty Function Reference

Architecture documentation for the testDecodeInvalidSeparator() function in SmtpResponseDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  e51cd914_2b45_7f37_e44d_bf3c3411cc24["testDecodeInvalidSeparator()"]
  6523a881_9a13_c253_6379_f7921cefdfbf["SmtpResponseDecoderTest"]
  e51cd914_2b45_7f37_e44d_bf3c3411cc24 -->|defined in| 6523a881_9a13_c253_6379_f7921cefdfbf
  style e51cd914_2b45_7f37_e44d_bf3c3411cc24 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java lines 114–123

    @Test
    public void testDecodeInvalidSeparator() {
        final EmbeddedChannel channel = newChannel();
        assertThrows(DecoderException.class, new Executable() {
            @Override
            public void execute() {
                channel.writeInbound(newBuffer("200:Ok\r\n"));
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testDecodeInvalidSeparator() do?
testDecodeInvalidSeparator() is a function in the netty codebase, defined in codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java.
Where is testDecodeInvalidSeparator() defined?
testDecodeInvalidSeparator() is defined in codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java at line 114.

Analyze Your Own Codebase

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

Try Supermodel Free