Home / Function/ testRemoveAndFail() — netty Function Reference

testRemoveAndFail() — netty Function Reference

Architecture documentation for the testRemoveAndFail() function in PendingWriteQueueTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  da6d76e6_7544_937d_2e9e_ee10dfd26fc8["testRemoveAndFail()"]
  b4bff24e_be13_7693_4ece_a0ed5ee1a982["PendingWriteQueueTest"]
  da6d76e6_7544_937d_2e9e_ee10dfd26fc8 -->|defined in| b4bff24e_be13_7693_4ece_a0ed5ee1a982
  a15cb8aa_da0e_04bd_0ac5_a8d7aa185f5d["assertWriteFails()"]
  da6d76e6_7544_937d_2e9e_ee10dfd26fc8 -->|calls| a15cb8aa_da0e_04bd_0ac5_a8d7aa185f5d
  style da6d76e6_7544_937d_2e9e_ee10dfd26fc8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport/src/test/java/io/netty/channel/PendingWriteQueueTest.java lines 69–79

    @Test
    public void testRemoveAndFail() {
        assertWriteFails(new TestHandler() {

            @Override
            public void flush(ChannelHandlerContext ctx) throws Exception {
                queue.removeAndFail(new TestException());
                super.flush(ctx);
            }
        }, 1);
    }

Domain

Subdomains

Frequently Asked Questions

What does testRemoveAndFail() do?
testRemoveAndFail() is a function in the netty codebase, defined in transport/src/test/java/io/netty/channel/PendingWriteQueueTest.java.
Where is testRemoveAndFail() defined?
testRemoveAndFail() is defined in transport/src/test/java/io/netty/channel/PendingWriteQueueTest.java at line 69.
What does testRemoveAndFail() call?
testRemoveAndFail() calls 1 function(s): assertWriteFails.

Analyze Your Own Codebase

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

Try Supermodel Free