testRandomTcpNotSentLowAt() — netty Function Reference
Architecture documentation for the testRandomTcpNotSentLowAt() function in EpollSocketChannelConfigTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 0d3b1c35_c283_4084_467b_d7dadc3fe392["testRandomTcpNotSentLowAt()"] cbf3710d_0610_b07a_f224_0edbf3495fdf["EpollSocketChannelConfigTest"] 0d3b1c35_c283_4084_467b_d7dadc3fe392 -->|defined in| cbf3710d_0610_b07a_f224_0edbf3495fdf a917c43b_f4f4_6a9c_6c30_9d94eb672c7f["randLong()"] 0d3b1c35_c283_4084_467b_d7dadc3fe392 -->|calls| a917c43b_f4f4_6a9c_6c30_9d94eb672c7f style 0d3b1c35_c283_4084_467b_d7dadc3fe392 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java lines 89–100
@Test
public void testRandomTcpNotSentLowAt() {
final long expected = randLong(0, 0xFFFFFFFFL);
final long actual;
try {
ch.config().setTcpNotSentLowAt(expected);
actual = ch.config().getTcpNotSentLowAt();
} catch (RuntimeException e) {
throw new TestAbortedException("assumeNoException", e);
}
assertEquals(expected, actual);
}
Domain
Subdomains
Defined In
Calls
Source
Frequently Asked Questions
What does testRandomTcpNotSentLowAt() do?
testRandomTcpNotSentLowAt() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java.
Where is testRandomTcpNotSentLowAt() defined?
testRandomTcpNotSentLowAt() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java at line 89.
What does testRandomTcpNotSentLowAt() call?
testRandomTcpNotSentLowAt() calls 1 function(s): randLong.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free