Home / Function/ testTooLongFrameException() — netty Function Reference

testTooLongFrameException() — netty Function Reference

Architecture documentation for the testTooLongFrameException() function in StompSubframeAggregatorTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  15d383f2_ea1e_8850_9f12_850ad3577b59["testTooLongFrameException()"]
  515cb9ca_06ef_9a6b_e66b_7e043c0973ff["StompSubframeAggregatorTest"]
  15d383f2_ea1e_8850_9f12_850ad3577b59 -->|defined in| 515cb9ca_06ef_9a6b_e66b_7e043c0973ff
  style 15d383f2_ea1e_8850_9f12_850ad3577b59 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompSubframeAggregatorTest.java lines 147–157

    @Test
    public void testTooLongFrameException() {
        final EmbeddedChannel channel = new EmbeddedChannel(new StompSubframeDecoder(),
                new StompSubframeAggregator(10));
        assertThrows(TooLongFrameException.class, new Executable() {
            @Override
            public void execute() {
                channel.writeInbound(Unpooled.wrappedBuffer(StompTestConstants.SEND_FRAME_1.getBytes()));
            }
        });
    }

Domain

Subdomains

Frequently Asked Questions

What does testTooLongFrameException() do?
testTooLongFrameException() is a function in the netty codebase, defined in codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompSubframeAggregatorTest.java.
Where is testTooLongFrameException() defined?
testTooLongFrameException() is defined in codec-stomp/src/test/java/io/netty/handler/codec/stomp/StompSubframeAggregatorTest.java at line 147.

Analyze Your Own Codebase

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

Try Supermodel Free