Home / Function/ testComponentsLessThanLowerBound() — netty Function Reference

testComponentsLessThanLowerBound() — netty Function Reference

Architecture documentation for the testComponentsLessThanLowerBound() function in AbstractCompositeByteBufTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  3c344129_18d3_8f44_e697_40ea63b78eda["testComponentsLessThanLowerBound()"]
  47bc0a20_e243_89ff_132b_99ac6b23835f["AbstractCompositeByteBufTest"]
  3c344129_18d3_8f44_e697_40ea63b78eda -->|defined in| 47bc0a20_e243_89ff_132b_99ac6b23835f
  2b9d825e_3872_7ca7_6fa2_43af2b5c9ac8["CompositeByteBuf()"]
  3c344129_18d3_8f44_e697_40ea63b78eda -->|calls| 2b9d825e_3872_7ca7_6fa2_43af2b5c9ac8
  style 3c344129_18d3_8f44_e697_40ea63b78eda fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

buffer/src/test/java/io/netty/buffer/AbstractCompositeByteBufTest.java lines 1540–1548

    @Test
    public void testComponentsLessThanLowerBound() {
        try {
            new CompositeByteBuf(ALLOC, true, 0);
            fail();
        } catch (IllegalArgumentException e) {
            assertEquals("maxNumComponents: 0 (expected: >= 1)", e.getMessage());
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testComponentsLessThanLowerBound() do?
testComponentsLessThanLowerBound() is a function in the netty codebase, defined in buffer/src/test/java/io/netty/buffer/AbstractCompositeByteBufTest.java.
Where is testComponentsLessThanLowerBound() defined?
testComponentsLessThanLowerBound() is defined in buffer/src/test/java/io/netty/buffer/AbstractCompositeByteBufTest.java at line 1540.
What does testComponentsLessThanLowerBound() call?
testComponentsLessThanLowerBound() calls 1 function(s): CompositeByteBuf.

Analyze Your Own Codebase

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

Try Supermodel Free