shouldFailWithoutLastContent() — netty Function Reference
Architecture documentation for the shouldFailWithoutLastContent() function in BinaryMemcacheEncoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 4e6c72c9_8df7_c51c_8d62_3c2c646aec7a["shouldFailWithoutLastContent()"] 00ee4b61_6080_1ae9_4b12_6a1a3a63b143["BinaryMemcacheEncoderTest"] 4e6c72c9_8df7_c51c_8d62_3c2c646aec7a -->|defined in| 00ee4b61_6080_1ae9_4b12_6a1a3a63b143 style 4e6c72c9_8df7_c51c_8d62_3c2c646aec7a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-memcache/src/test/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheEncoderTest.java lines 155–164
@Test
public void shouldFailWithoutLastContent() {
channel.writeOutbound(new DefaultMemcacheContent(Unpooled.EMPTY_BUFFER));
assertThrows(EncoderException.class, new Executable() {
@Override
public void execute() {
channel.writeOutbound(new DefaultBinaryMemcacheRequest());
}
});
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does shouldFailWithoutLastContent() do?
shouldFailWithoutLastContent() is a function in the netty codebase, defined in codec-memcache/src/test/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheEncoderTest.java.
Where is shouldFailWithoutLastContent() defined?
shouldFailWithoutLastContent() is defined in codec-memcache/src/test/java/io/netty/handler/codec/memcache/binary/BinaryMemcacheEncoderTest.java at line 155.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free