Home / Class/ IdleStateEventTest Class — netty Architecture

IdleStateEventTest Class — netty Architecture

Architecture documentation for the IdleStateEventTest class in IdleStateEventTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  8ffba821_7276_c4a8_77b0_2fc6ae82ada6["IdleStateEventTest"]
  45d23367_dc6a_0f47_5487_28333e7b1ffd["IdleStateEventTest.java"]
  8ffba821_7276_c4a8_77b0_2fc6ae82ada6 -->|defined in| 45d23367_dc6a_0f47_5487_28333e7b1ffd
  5a148c26_bc38_9884_8646_02b8a42ddb87["testHumanReadableToString()"]
  8ffba821_7276_c4a8_77b0_2fc6ae82ada6 -->|method| 5a148c26_bc38_9884_8646_02b8a42ddb87

Relationship Graph

Source Code

handler/src/test/java/io/netty/handler/timeout/IdleStateEventTest.java lines 24–34

public class IdleStateEventTest {
    @Test
    public void testHumanReadableToString() {
        assertEquals("IdleStateEvent(READER_IDLE, first)", FIRST_READER_IDLE_STATE_EVENT.toString());
        assertEquals("IdleStateEvent(READER_IDLE)", READER_IDLE_STATE_EVENT.toString());
        assertEquals("IdleStateEvent(WRITER_IDLE, first)", FIRST_WRITER_IDLE_STATE_EVENT.toString());
        assertEquals("IdleStateEvent(WRITER_IDLE)", WRITER_IDLE_STATE_EVENT.toString());
        assertEquals("IdleStateEvent(ALL_IDLE, first)", FIRST_ALL_IDLE_STATE_EVENT.toString());
        assertEquals("IdleStateEvent(ALL_IDLE)", ALL_IDLE_STATE_EVENT.toString());
    }
}

Frequently Asked Questions

What is the IdleStateEventTest class?
IdleStateEventTest is a class in the netty codebase, defined in handler/src/test/java/io/netty/handler/timeout/IdleStateEventTest.java.
Where is IdleStateEventTest defined?
IdleStateEventTest is defined in handler/src/test/java/io/netty/handler/timeout/IdleStateEventTest.java at line 24.

Analyze Your Own Codebase

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

Try Supermodel Free