Home / Function/ testInvalidGroup() — netty Function Reference

testInvalidGroup() — netty Function Reference

Architecture documentation for the testInvalidGroup() function in NonStickyEventExecutorGroupTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  03efb36b_8355_12d6_ab7e_0cb5f589e96e["testInvalidGroup()"]
  d2c2f535_6e38_2696_75d2_7afac99b078a["NonStickyEventExecutorGroupTest"]
  03efb36b_8355_12d6_ab7e_0cb5f589e96e -->|defined in| d2c2f535_6e38_2696_75d2_7afac99b078a
  d369a955_11b2_c7ca_40f7_c70d0810e451["execute()"]
  03efb36b_8355_12d6_ab7e_0cb5f589e96e -->|calls| d369a955_11b2_c7ca_40f7_c70d0810e451
  style 03efb36b_8355_12d6_ab7e_0cb5f589e96e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/concurrent/NonStickyEventExecutorGroupTest.java lines 44–57

    @Test
    public void testInvalidGroup() {
        final EventExecutorGroup group = new DefaultEventExecutorGroup(1);
        try {
            assertThrows(IllegalArgumentException.class, new Executable() {
                @Override
                public void execute() {
                    new NonStickyEventExecutorGroup(group);
                }
            });
        } finally {
            group.shutdownGracefully();
        }
    }

Domain

Subdomains

Calls

Frequently Asked Questions

What does testInvalidGroup() do?
testInvalidGroup() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/NonStickyEventExecutorGroupTest.java.
Where is testInvalidGroup() defined?
testInvalidGroup() is defined in common/src/test/java/io/netty/util/concurrent/NonStickyEventExecutorGroupTest.java at line 44.
What does testInvalidGroup() call?
testInvalidGroup() calls 1 function(s): execute.

Analyze Your Own Codebase

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

Try Supermodel Free