Home / Function/ testConcreteClass() — netty Function Reference

testConcreteClass() — netty Function Reference

Architecture documentation for the testConcreteClass() function in TypeParameterMatcherTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  38f2cdaa_fe72_2aaf_7c1d_0891f296e70c["testConcreteClass()"]
  0471a2ea_34fb_90fc_b83b_eaf4cc2b794c["TypeParameterMatcherTest"]
  38f2cdaa_fe72_2aaf_7c1d_0891f296e70c -->|defined in| 0471a2ea_34fb_90fc_b83b_eaf4cc2b794c
  style 38f2cdaa_fe72_2aaf_7c1d_0891f296e70c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java lines 30–42

    @Test
    public void testConcreteClass() throws Exception {
        TypeParameterMatcher m = TypeParameterMatcher.find(new TypeQ(), TypeX.class, "A");
        assertFalse(m.match(new Object()));
        assertFalse(m.match(new A()));
        assertFalse(m.match(new AA()));
        assertTrue(m.match(new AAA()));
        assertFalse(m.match(new B()));
        assertFalse(m.match(new BB()));
        assertFalse(m.match(new BBB()));
        assertFalse(m.match(new C()));
        assertFalse(m.match(new CC()));
    }

Domain

Subdomains

Frequently Asked Questions

What does testConcreteClass() do?
testConcreteClass() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java.
Where is testConcreteClass() defined?
testConcreteClass() is defined in common/src/test/java/io/netty/util/internal/TypeParameterMatcherTest.java at line 30.

Analyze Your Own Codebase

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

Try Supermodel Free