Home / Function/ testDebug() — netty Function Reference

testDebug() — netty Function Reference

Architecture documentation for the testDebug() function in CommonsLoggerTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9c23acd4_72f7_7aef_a003_f3c5916c7b41["testDebug()"]
  4d434096_9af8_4429_060e_ff690783d6b1["CommonsLoggerTest"]
  9c23acd4_72f7_7aef_a003_f3c5916c7b41 -->|defined in| 4d434096_9af8_4429_060e_ff690783d6b1
  style 9c23acd4_72f7_7aef_a003_f3c5916c7b41 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/logging/CommonsLoggerTest.java lines 107–115

    @Test
    public void testDebug() {
        Log mockLog = mock(Log.class);

        InternalLogger logger = new CommonsLogger(mockLog, "foo");
        logger.debug("a");

        verify(mockLog).debug("a");
    }

Domain

Subdomains

Frequently Asked Questions

What does testDebug() do?
testDebug() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/logging/CommonsLoggerTest.java.
Where is testDebug() defined?
testDebug() is defined in common/src/test/java/io/netty/util/internal/logging/CommonsLoggerTest.java at line 107.

Analyze Your Own Codebase

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

Try Supermodel Free