Home / Class/ CommonsLoggerFactoryTest Class — netty Architecture

CommonsLoggerFactoryTest Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  247b631f_ec5b_d0c9_b20b_9769da01b192["CommonsLoggerFactoryTest"]
  64690995_44e3_21df_487b_22a4df2b7c57["CommonsLoggerFactoryTest.java"]
  247b631f_ec5b_d0c9_b20b_9769da01b192 -->|defined in| 64690995_44e3_21df_487b_22a4df2b7c57
  65c94c77_76b3_c1e4_9044_3d6814fe9fb0["testCreation()"]
  247b631f_ec5b_d0c9_b20b_9769da01b192 -->|method| 65c94c77_76b3_c1e4_9044_3d6814fe9fb0

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/logging/CommonsLoggerFactoryTest.java lines 23–31

public class CommonsLoggerFactoryTest {

    @Test
    public void testCreation() {
        InternalLogger logger = CommonsLoggerFactory.INSTANCE.newInstance("foo");
        assertTrue(logger instanceof CommonsLogger);
        assertEquals("foo", logger.name());
    }
}

Frequently Asked Questions

What is the CommonsLoggerFactoryTest class?
CommonsLoggerFactoryTest is a class in the netty codebase, defined in common/src/test/java/io/netty/util/internal/logging/CommonsLoggerFactoryTest.java.
Where is CommonsLoggerFactoryTest defined?
CommonsLoggerFactoryTest is defined in common/src/test/java/io/netty/util/internal/logging/CommonsLoggerFactoryTest.java at line 23.

Analyze Your Own Codebase

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

Try Supermodel Free