Home / Function/ testInvalidLowTcpNotSentLowAt() — netty Function Reference

testInvalidLowTcpNotSentLowAt() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java lines 115–126

    @Test
    public void testInvalidLowTcpNotSentLowAt() {
        try {
            final long value = -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 testInvalidLowTcpNotSentLowAt() do?
testInvalidLowTcpNotSentLowAt() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java.
Where is testInvalidLowTcpNotSentLowAt() defined?
testInvalidLowTcpNotSentLowAt() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketChannelConfigTest.java at line 115.

Analyze Your Own Codebase

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

Try Supermodel Free