Home / Function/ testTrace() — netty Function Reference

testTrace() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/logging/CommonsLoggerTest.java lines 87–95

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

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

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

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free