Home / Function/ testInvalidHighTcpNotSentLowAt() — netty Function Reference

testInvalidHighTcpNotSentLowAt() — netty Function Reference

Architecture documentation for the testInvalidHighTcpNotSentLowAt() function in EpollSocketChannelConfigTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  aea5d917_4fcb_a83b_62db_22ab35f19bbb["testInvalidHighTcpNotSentLowAt()"]
  cbf3710d_0610_b07a_f224_0edbf3495fdf["EpollSocketChannelConfigTest"]
  aea5d917_4fcb_a83b_62db_22ab35f19bbb -->|defined in| cbf3710d_0610_b07a_f224_0edbf3495fdf
  style aea5d917_4fcb_a83b_62db_22ab35f19bbb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java lines 102–113

    @Test
    public void testInvalidHighTcpNotSentLowAt() {
        try {
            final long value = 0xFFFFFFFFL + 1;
            ch.config().setTcpNotSentLowAt(value);
        } catch (IllegalArgumentException e) {
            return;
        } catch (RuntimeException e) {
            throw new TestAbortedException("assumeNoException", e);
        }
        fail();
    }

Domain

Subdomains

Frequently Asked Questions

What does testInvalidHighTcpNotSentLowAt() do?
testInvalidHighTcpNotSentLowAt() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java.
Where is testInvalidHighTcpNotSentLowAt() defined?
testInvalidHighTcpNotSentLowAt() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java at line 102.

Analyze Your Own Codebase

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

Try Supermodel Free