testPongFrameDropFrameFalse() — netty Function Reference
Architecture documentation for the testPongFrameDropFrameFalse() function in WebSocketProtocolHandlerTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 3c31931c_e0a8_0527_e3b8_7361cbb26a44["testPongFrameDropFrameFalse()"] 4e6acdd6_0a1b_2423_42e3_58c47c3a2cd5["WebSocketProtocolHandlerTest"] 3c31931c_e0a8_0527_e3b8_7361cbb26a44 -->|defined in| 4e6acdd6_0a1b_2423_42e3_58c47c3a2cd5 8cf80732_3146_beb8_835c_e7d7278a759d["assertPropagatedInbound()"] 3c31931c_e0a8_0527_e3b8_7361cbb26a44 -->|calls| 8cf80732_3146_beb8_835c_e7d7278a759d style 3c31931c_e0a8_0527_e3b8_7361cbb26a44 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/websocketx/WebSocketProtocolHandlerTest.java lines 119–130
@Test
public void testPongFrameDropFrameFalse() {
EmbeddedChannel channel = new EmbeddedChannel(new WebSocketProtocolHandler(false) { });
PongWebSocketFrame pingResponse = new PongWebSocketFrame();
assertTrue(channel.writeInbound(pingResponse));
assertPropagatedInbound(pingResponse, channel);
pingResponse.release();
assertFalse(channel.finish());
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does testPongFrameDropFrameFalse() do?
testPongFrameDropFrameFalse() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/websocketx/WebSocketProtocolHandlerTest.java.
Where is testPongFrameDropFrameFalse() defined?
testPongFrameDropFrameFalse() is defined in codec-http/src/test/java/io/netty/handler/codec/http/websocketx/WebSocketProtocolHandlerTest.java at line 119.
What does testPongFrameDropFrameFalse() call?
testPongFrameDropFrameFalse() calls 1 function(s): assertPropagatedInbound.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free