testDecodeInvalidLine() — netty Function Reference
Architecture documentation for the testDecodeInvalidLine() function in SmtpResponseDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 07312687_d5e3_cd98_00b5_fbf8f73cd674["testDecodeInvalidLine()"] 6523a881_9a13_c253_6379_f7921cefdfbf["SmtpResponseDecoderTest"] 07312687_d5e3_cd98_00b5_fbf8f73cd674 -->|defined in| 6523a881_9a13_c253_6379_f7921cefdfbf style 07312687_d5e3_cd98_00b5_fbf8f73cd674 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java lines 136–145
@Test
public void testDecodeInvalidLine() {
final EmbeddedChannel channel = newChannel();
assertThrows(DecoderException.class, new Executable() {
@Override
public void execute() {
channel.writeInbound(newBuffer("Ok\r\n"));
}
});
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testDecodeInvalidLine() do?
testDecodeInvalidLine() is a function in the netty codebase, defined in codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java.
Where is testDecodeInvalidLine() defined?
testDecodeInvalidLine() is defined in codec-smtp/src/test/java/io/netty/handler/codec/smtp/SmtpResponseDecoderTest.java at line 136.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free